TrollStore/TrollStore/TSInstallationController.h

14 lines
594 B
C
Raw Normal View History

2022-10-30 06:45:30 +08:00
@import Foundation;
@interface TSInstallationController : NSObject
2022-11-20 06:22:20 +08:00
+ (void)presentInstallationAlertIfEnabledForFile:(NSString*)pathToIPA isRemoteInstall:(BOOL)remoteInstall completion:(void (^)(BOOL, NSError*))completionBlock;
2022-10-30 06:45:30 +08:00
+ (void)handleAppInstallFromFile:(NSString*)pathToIPA forceInstall:(BOOL)force completion:(void (^)(BOOL, NSError*))completion;
+ (void)handleAppInstallFromFile:(NSString*)pathToIPA completion:(void (^)(BOOL, NSError*))completion;
+ (void)handleAppInstallFromRemoteURL:(NSURL*)remoteURL completion:(void (^)(BOOL, NSError*))completion;
2023-01-21 20:52:39 +08:00
+ (void)installLdid;
2022-10-30 06:45:30 +08:00
@end