mirror of
https://github.com/opa334/TrollStore.git
synced 2025-05-25 12:17:12 +08:00
12 lines
522 B
Objective-C
12 lines
522 B
Objective-C
@import Foundation;
|
|
|
|
@interface TSInstallationController : NSObject
|
|
|
|
+ (void)presentInstallationAlertForFile:(NSString*)pathToIPA completion:(void (^)(BOOL, NSError*))completion;
|
|
|
|
+ (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;
|
|
|
|
@end |