blob: 87c044bfe2892a9566cec9e4e1600c0f2fadbe70 [file] [log] [blame]
#import <UIKit/UIKit.h>
@interface SkOptionListController : UITableViewController {
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