1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-04-15 16:52:50 +08:00
TrollStore/TrollStore/TSInstallationController.h
2022-11-19 23:22:20 +01:00

12 lines
572 B
Objective-C

@import Foundation;
@interface TSInstallationController : NSObject
+ (void)presentInstallationAlertIfEnabledForFile:(NSString*)pathToIPA isRemoteInstall:(BOOL)remoteInstall completion:(void (^)(BOOL, NSError*))completionBlock;
+ (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