mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
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:
parent
1c44991e62
commit
67eaf0e999
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue