skia2/experimental/iOSSampleApp/Shared/SkOptionListController.h
rmistry@google.com d6176b0dca Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)
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
2012-08-23 18:14:13 +00:00

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