Guest User

Untitled

a guest
Dec 9th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2. #import "RecordVoice.h"
  3. #import "ViewAlarm.h"
  4. #import <QuartzCore/QuartzCore.h>
  5. #import <MediaPlayer/MediaPlayer.h>
  6. #import "CustomAlarmTable.h"
  7. #import "iTalkAlarmAppDelegate.h"
  8. #import "setLabel.h"
  9. #import "setSound.h"
  10.  
  11.  
  12.  
  13. @interface SetAlarm : UIViewController<UITableViewDelegate> {
  14.  
  15.  
  16.  
  17. IBOutlet UITableView *tableView;
  18. IBOutlet UIButton *btnRecord;
  19. IBOutlet UIButton *btnViewAlarm;
  20.  
  21. NSMutableArray *arrayAlarm;
  22. IBOutlet UIDatePicker *dateTimePicker;
  23.  
  24. IBOutlet UISegmentedControl *scheduleControl;
  25.  
  26. }
  27.  
  28. @property (nonatomic,retain)IBOutlet UITableView *tableView;
  29. @property (nonatomic,retain)NSMutableArray *arrayAlarm;
  30. @property (nonatomic, retain)IBOutlet UIDatePicker *dateTimePicker;
  31. @property (nonatomic,retain) IBOutlet UISegmentedControl *scheduleControl;
  32.  
  33.  
  34.  
  35.  
  36. -(IBAction)btnRecord_Clicked;
  37. -(IBAction)btnViewAlarm_Clicked;
  38. -(IBAction)alarmSetButtonTapped:(id)sender;
  39. -(IBAction)alarmCancelButtonTapped:(id)sender;
  40. -(void) scheduleLocalNotificationWithDate:(NSDate *)fireDate;
  41. -(void) presentMessage :(NSString *)message;
  42.  
  43.  
  44. - (void)showReminder:(NSString *)text;
  45.  
  46. @end
Add Comment
Please, Sign In to add comment