blob: 87c044bfe2892a9566cec9e4e1600c0f2fadbe70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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
|