OOOoyalaTVOptionCell.h
1 #import <UIKit/UIKit.h>
2 
3 @interface OOOoyalaTVOptionCell : UICollectionViewCell
4 
5 @property UILabel *optionLabel;
6 @property UILabel *checkedLabel;
7 @property BOOL isFocused;
8 
9 - (instancetype)initWithFrame:(CGRect)frame;
10 - (BOOL)canBecomeFocused;
11 
12 @end
13 
UILabel * optionLabel
Definition: OOOoyalaTVOptionCell.h:5
Definition: OOOoyalaTVOptionCell.h:3
BOOL canBecomeFocused()
Definition: OOOoyalaTVOptionCell.m:60
UILabel * checkedLabel
Definition: OOOoyalaTVOptionCell.h:6
BOOL isFocused
Definition: OOOoyalaTVOptionCell.h:7