Focus in tvOS app

Summary:
fixed #261
Closes https://github.com/Instagram/IGListKit/pull/262

Differential Revision: D4235651

Pulled By: jessesquires

fbshipit-source-id: 9777927d2c1c89ad838197fc10db81a069bbf197
This commit is contained in:
Shukhrat Tursunov
2016-11-27 16:47:18 -08:00
committed by Facebook Github Bot
parent 1c44991e62
commit 67eaf0e999

View File

@@ -32,10 +32,10 @@ final class EmbeddedCollectionViewCell: UICollectionViewCell {
super.layoutSubviews()
collectionView.frame = contentView.frame
}
override var preferredFocusedView: UIView? {
override var canBecomeFocused: Bool {
get {
return collectionView
return false
}
}