-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIBWAYHeaders.h
31 lines (23 loc) · 957 Bytes
/
IBWAYHeaders.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
#import <UIKit/UIKit.h>
@class NCNotificationShortLookViewController;
@interface NCNotificationRequest : NSObject
- (NSString *)sectionIdentifier;
@end
@interface _NCNotificationViewControllerView : UIView
@property (assign,nonatomic) UIView *contentView;
@end
@interface NCNotificationLongLookViewController: UIViewController
@property (nonatomic,retain) _NCNotificationViewControllerView *view;
-(NCNotificationShortLookViewController *)_presentingNotificationViewController;
@end
@interface NCNotificationShortLookViewController : UIViewController
@property (nonatomic,retain) _NCNotificationViewControllerView *view;
- (NCNotificationRequest *)notificationRequest;
- (NCNotificationLongLookViewController *)_presentedLongLookViewController;
@end
@interface NCNotificationLongLookView : UIView
@property (nonatomic,copy) NSString *title;
@end
@interface NCNotificationShortLookView : UIView
@property (nonatomic,copy) NSString *primaryText;
@end