2022-09-22 23:38:58 +08:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <Preferences/PSListController.h>
|
|
|
|
#import <Preferences/PSSpecifier.h>
|
|
|
|
|
|
|
|
@interface TSListControllerShared : PSListController
|
|
|
|
- (BOOL)isTrollStore;
|
|
|
|
- (NSString*)getTrollStoreVersion;
|
2022-10-07 07:25:20 +08:00
|
|
|
- (void)downloadTrollStoreAndDo:(void (^)(NSString* localTrollStoreTarPath))doHandler;
|
2022-09-22 23:38:58 +08:00
|
|
|
- (void)installTrollStorePressed;
|
|
|
|
- (void)updateTrollStorePressed;
|
|
|
|
- (void)rebuildIconCachePressed;
|
|
|
|
- (void)refreshAppRegistrationsPressed;
|
|
|
|
- (void)uninstallPersistenceHelperPressed;
|
|
|
|
- (void)handleUninstallation;
|
|
|
|
- (void)uninstallTrollStorePressed;
|
|
|
|
@end
|