-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathheaders.h
More file actions
32 lines (26 loc) · 913 Bytes
/
headers.h
File metadata and controls
32 lines (26 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#define PreferencesChangedNotification "net.example.theosexample1/preferences"
#define _plistfile @"/var/mobile/Library/Preferences/net.example.theosexample1.plist"
@interface PSTableCell : UITableViewCell
- (id)initWithStyle:(NSInteger)arg1 reuseIdentifier:(id)arg2 specifier:(id)arg3;
@end
@interface PSControlTableCell : PSTableCell
- (UIControl *)control;
@end
@interface PSSwitchTableCell : PSControlTableCell
@end
@interface PSSpecifier : NSObject
- (id)propertyForKey:(id)arg1;
@end
@interface PSViewController : UIViewController
- (void)setPreferenceValue:(id)arg1 specifier:(id)arg2;
- (id)readPreferenceValue:(id)arg1;
- (void)viewDidLayoutSubviews;
@end
@interface PSListController : PSViewController {
UITableView *_table;
NSArray *_specifiers;
}
- (id)loadSpecifiersFromPlistName:(id)arg1 target:(id)arg2;
- (id)tableView:(id)arg1 cellForRowAtIndexPath:(id)arg2;
- (UITableView *)table;
@end