5987045388
http://codereview.appspot.com/4798055/ git-svn-id: http://skia.googlecode.com/svn/trunk@2022 2bbb7eff-a529-9590-31e7-b0007b416f81
17 lines
530 B
Objective-C
17 lines
530 B
Objective-C
#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
|