mirror of https://github.com/LIJI32/SameBoy.git
12 lines
343 B
Objective-C
12 lines
343 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface GBOptionViewController : UITableViewController
|
|
- (instancetype)initWithHeader:(NSString *)header;
|
|
@property NSString *header;
|
|
@property NSString *footer;
|
|
@property (getter=isModal) bool modal;
|
|
- (void)addOption:(NSString *)title
|
|
withCheckmark:(bool)checked
|
|
action:(void (^)(void))block;
|
|
@end
|