-
Notifications
You must be signed in to change notification settings - Fork 1
/
NotificationsUI.h
26 lines (22 loc) · 1011 Bytes
/
NotificationsUI.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
#import "Headers.h"
@protocol NCInteractiveNotificationHostDelegate <NSObject>
@optional
-(void)hostViewControllerDidChangePreferredContentSize:(id)arg1;
-(void)hostViewController:(id)arg1 didRequestDismissalWithContext:(SBUIBannerContext *)ctx;
@end
@interface NCInteractiveNotificationViewController : UIViewController
@property (nonatomic,copy) NSDictionary * context;
-(void)handleActionAtIndex:(unsigned long long)arg1 ;
-(void)dismissWithContext:(id)arg1 ;
-(void)setActionEnabled:(BOOL)arg1 atIndex:(unsigned long long)arg2 ;
-(void)handleActionIdentifier:(id)arg1 ;
-(void)requestPreferredContentHeight:(double)arg1;
@end
@interface NCViewServiceDescriptor : NSObject
@property (nonatomic,copy,readonly) NSString * viewControllerClassName;
@property (nonatomic,copy,readonly) NSString * bundleIdentifier;
+(id)descriptorWithViewControllerClassName:(id)arg1 bundleIdentifier:(id)arg2 ;
@end
@interface NCContentViewController : UIViewController
@property (nonatomic,copy) NSDictionary * context;
@end