• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #import <UIKit/UIKit.h>
2 
3 @interface SkOptionListController : UITableViewController {
4     NSMutableArray* fOptions;
5     NSInteger fSelectedIndex;
6     UITableViewCell* fSelectedCell;
7     UITableViewCell* fParentCell;
8 }
9 @property (nonatomic, retain) NSMutableArray* fOptions;
10 @property (nonatomic, assign) NSInteger fSelectedIndex;
11 @property (nonatomic, retain) UITableViewCell* fSelectedCell;
12 @property (nonatomic, retain) UITableViewCell* fParentCell;
13 
14 - (void)addOption:(NSString*)option;
15 - (NSString*)getSelectedOption;
16 @end
17