d6176b0dca
This CL is part II of IV (I broke down the 1280 files into 4 CLs). Review URL: https://codereview.appspot.com/6474054 git-svn-id: http://skia.googlecode.com/svn/trunk@5263 2bbb7eff-a529-9590-31e7-b0007b416f81
17 lines
526 B
Objective-C
17 lines
526 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
|