-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathBHIManager.h
More file actions
32 lines (31 loc) · 797 Bytes
/
BHIManager.h
File metadata and controls
32 lines (31 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface BHIManager: NSObject
+ (BOOL)hideAds;
+ (BOOL)downloadVideos;
+ (BOOL)downloadMusics;
+ (BOOL)hideElementButton;
+ (BOOL)copyVideoDecription;
+ (BOOL)copyMusicLink;
+ (BOOL)copyVideoLink;
+ (BOOL)autoPlay;
+ (BOOL)progressBar;
+ (BOOL)likeConfirmation;
+ (BOOL)likeCommentConfirmation;
+ (BOOL)dislikeCommentConfirmation;
+ (BOOL)followConfirmation;
+ (BOOL)profileSave;
+ (BOOL)profileCopy;
+ (BOOL)alwaysOpenSafari;
+ (BOOL)regionChangingEnabled;
+ (NSDictionary *)selectedRegion;
+ (BOOL)fakeChangesEnabled;
+ (BOOL)fakeVerified;
+ (BOOL)extendedBio;
+ (BOOL)extendedComment;
+ (BOOL)appLock;
+ (void)showSaveVC:(id)item;
+ (void)cleanCache;
+ (BOOL)isEmpty:(NSURL *)url;
+ (NSString *)getDownloadingPersent:(float)per;
@end