2011-08-02 13:20:22 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2012-08-23 18:14:13 +00:00
|
|
|
@interface SkOptionListController : UITableViewController {
|
2011-08-02 13:20:22 +00:00
|
|
|
NSMutableArray* fOptions;
|
|
|
|
NSInteger fSelectedIndex;
|
|
|
|
UITableViewCell* fSelectedCell;
|
|
|
|
UITableViewCell* fParentCell;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) NSMutableArray* fOptions;
|
|
|
|
@property (nonatomic, assign) NSInteger fSelectedIndex;
|
|
|
|
@property (nonatomic, retain) UITableViewCell* fSelectedCell;
|
|
|
|
@property (nonatomic, retain) UITableViewCell* fParentCell;
|
|
|
|
|
|
|
|
- (void)addOption:(NSString*)option;
|
|
|
|
- (NSString*)getSelectedOption;
|
|
|
|
@end
|