Hale Cai
2018-08-10 42c80d0b43ff8736edb5be4bbfcbc7a99fc8a119
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  setLocalNotificationViewController.h
//  PushSDK
//
//  Created by 张 on 14-7-17.
//
//
 
#import <UIKit/UIKit.h>
 
@interface setLocalNotificationViewController
    : UIViewController<UITextFieldDelegate>
 
@property(weak, nonatomic) IBOutlet UITextField *notificationBodyTextField;
@property(weak, nonatomic) IBOutlet UIDatePicker *notificationDatePicker;
@property(weak, nonatomic) IBOutlet UITextField *notificationButtonTextField;
@property(weak, nonatomic)
    IBOutlet UITextField *notificationIdentifierTextField;
@property(strong, nonatomic) IBOutlet UIView *backgroundView;
@property(weak, nonatomic) IBOutlet UITextField *notificationBadgeTextField;
- (IBAction)setNotification:(id)sender;
- (IBAction)clearAllNotification:(id)sender;
- (IBAction)clearLastNotification;
@end