-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTweak.h
34 lines (29 loc) · 1.29 KB
/
Tweak.h
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
33
34
#import <UIKit/UIKit.h>
#import <UIKit/UIBezierPath.h>
#import "FolderFinder.h"
@interface NCNotificationContent : NSObject {
NSArray* _icons;
NSString* _header;
}
@property (nonatomic,copy/*,readonly*/) NSArray * icons; //@synthesize header=_header - In the implementation block
@property (nonatomic,copy,readonly) NSString * header; //@synthesize header=_header - In the implementation block
@end
@interface NCNotificationContent ()
-(void)setIcons:(NSArray *)arg1 ;
-(NSArray *)icons ;
@end
@interface NCNotificationRequest : NSObject {
NCNotificationContent* _content;
}
@property (nonatomic/*, readonly*/) NCNotificationContent * content; //@synthesize content=_content - In the implementation block
@property (nonatomic,readonly) UNNotification * userNotification; //@synthesize userNotification=_userNotification - In the implementation block
-(NSString *)threadIdentifier;
@end
@interface SBDashBoardNotificationDispatcher : NSObject
// %new
- (UIImage *)imageWithImage:(UIImage *)image convertToSize:(CGSize)size;
@end
@interface CSNotificationDispatcher : NSObject
// %new
- (UIImage *)imageWithImage:(UIImage *)image convertToSize:(CGSize)size;
@end