1
0
zrcadlo https://github.com/Burrit0z/kai synchronizováno 2025-07-04 01:06:47 +00:00
Files
kai/kaiprefs/KAIRootListController.h
Burrit0z 4a9d95086d prefs
2020-05-20 12:43:34 -04:00

35 řádky
852 B
Objective-C

#import <Preferences/PSListController.h>
#import <Preferences/PSTableCell.h>
#import <Preferences/PSSpecifier.h>
#import <Preferences/PSListItemsController.h>
#import <Foundation/NSUserDefaults.h>
@interface PSListController (kai)
-(void)setFrame:(CGRect)frame;
@end
@interface NSTask : NSObject
@property(copy) NSArray *arguments;
@property(copy) NSString *launchPath;
- (id)init;
- (void)waitUntilExit;
- (void)launch;
@end
@interface KAIRootListController : PSListController
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UIImageView *iconView;
@end
@protocol PreferencesTableCustomView
- (id)initWithSpecifier:(id)arg1;
@end
@interface KaiHeaderCell : PSTableCell <PreferencesTableCustomView> {
UIView *bgView;
UILabel *packageNameLabel;
UILabel *developerLabel;
UILabel *versionLabel;
}
@end