所以我有一个应用程序,包括重复间隔本地通知,我想添加一个功能,将在睡眠时间暂停通知。
到目前为止,我已经为用户创建了两个日期选择器,以便他们想要停止重复间隔的时间以及自动重新启动的时间。我为他们添加了一个uiswitch来激活睡眠模式或忽略该功能。
现在,我将如何制作我的主要uipickerview - (他们从这里选择通知) - 如果它已经打开则收听uiswitch,然后它会在我的第一个datepicker发出时暂停通知并重新启动来自第二个日期选择器的通知?
我已经设置了我的日期选择器和我的uiswitch但不知道如何用我的uipickerview实现它..它应该是在DidSelectRow的方法下吗?或appdelegate中的方法(如DidEnterBackground)?
请询问您是否需要更多信息或代码来理解这个想法并帮助我。感谢。
ADD ON:
这是我为datepicker准备的代码,但是,我只是错过了将其添加到我的选择器视图中的连接。
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
dateFormatter.timeZone=[NSTimeZone defaultTimeZone];
dateFormatter.timeStyle=NSDateFormatterShortStyle;
dateFormatter.dateStyle=NSDateFormatterShortStyle;
NSString *dateTimeString=[dateFormatter stringFromDate:startTime.date];
NSLog(@"Start time is %@",dateTimeString);
NSDateFormatter *dateFormatter2 = [[NSDateFormatter alloc]init];
dateFormatter2.timeZone=[NSTimeZone defaultTimeZone];
dateFormatter2.timeStyle=NSDateFormatterShortStyle;
dateFormatter2.dateStyle=NSDateFormatterShortStyle;
NSString *dateTimeString2=[dateFormatter2 stringFromDate:endTime.date];
NSLog(@"End time is %@",dateTimeString2);
我也有这段代码来比较时间:
if ([[NSDate date] isEqualToDate:startTime.date]) {
NSLog(@"currentDate is equal to startTime");
}
if ([[NSDate date] isEqualToDate:endTime.date]) {
NSLog(@"currentDate is equal to endTime");
}
答案 0 :(得分:2)
iOS不支持在两个特定日期/时间之间发布本地重复通知。此外,与基于地理位置的通知不同,应用程序不会在不在前台时发出已触发通知的警报。所以我们需要通过在用户没有睡觉的时候创建许多单独的通知来解决这个问题。
按照以下步骤创建基本解决方案:
将控件连接到视图控制器标题中的IBOutlets:
<强> SomeViewController.h:强>
@interface SomeViewController : UIViewController
@property (weak, nonatomic) IBOutlet UISwitch *sleepToggleSwitch;
@property (weak, nonatomic) IBOutlet UIDatePicker *notificationIgnoreStartTime;
@property (weak, nonatomic) IBOutlet UIDatePicker *notificationIgnoreEndTime;
@property (weak, nonatomic) IBOutlet UIPickerView *notificationTypePickerView;
@end
在视图控制器的实现文件中创建IBAction方法并连接每个控件(两个UIDatePickers,一个UISwitch和一个UIPickerView)。每个方法都应该调用私有方法startUserOptionInteractionTimer
。
<强> SomeViewController.m:强>
- (IBAction)noNotificationPeriodStartDateChanged:(id)sender
{
[self startUserOptionInteractionTimer];
}
- (IBAction)noNotificationPeriodEndDateChanged:(id)sender
{
[self startUserOptionInteractionTimer];
}
- (IBAction)sleepToggleSwitchToggled:(id)sender
{
[self startUserOptionInteractionTimer];
}
- (IBAction)notificationTypeChanged:(id)sender
{
[self startUserOptionInteractionTimer];
}
在startUserOptionInteractionTimer
私有方法中,我们(重新)启动NSTimer。我们在这里使用一个计时器,这样如果用户更改日期或快速切换开关 - 他们可能会这样做 - 您不会拆除并连续快速设置通知。 (应在实现文件的接口延续中声明NSTimer属性userOptionInteractionTimer
。)
<强> SomeViewController.m:强>
- (void)startUserOptionInteractionTimer
{
// Remove any existing timer
[self.userOptionInteractionTimer invalidate];
self.userOptionInteractionTimer = [NSTimer scheduledTimerWithTimeInterval:4.f
target:self
selector:@selector(setupNotifications)
userInfo:nil
repeats:NO];
}
创建另一个私有方法以拆除预先存在的通知并设置新通知。
此处设置通知取决于您要通知用户的时间和频率。假设您希望每小时通知您的用户并且用户启用了睡眠功能,那么您将为每天重复的每小时设置14-18个通知(取决于用户睡眠时间)。
<强> SomeViewController.m:强>
- (void)setupNotifications
{
[[UIApplication sharedApplication] cancelAllLocalNotifications];
// Read the notification type from the notification type picker view
NSInteger row = [self.notificationTypePickerView selectedRowInComponent:0]; // Assumes there is only one component in the picker view.
NSString *notificationType = [self.notificationList objectAtIndex:row]; // Where notificationList is the array storing the list of notification strings that appear in the picker view.
// If the user has turned the sleep feature on (via the UISwitch):
if (self.sleepToggleSwitch.on) {
// Set the first notification to start after the user selected 'noNotificationPeriodEndDate' and repeat daily.
// Add 1 hour to the notification date
// Do while the notification date < the user selected 'noNotificationPeriodStartDate' ...
// Create the notification and set to repeat daily
// Add 1 hour to the notification date
// Loop
} else {
// Set up 24 repeating daily notifications each one hour apart.
}
}
请注意,单个应用最多只能创建64个通知(重复通知计为一个),因此,如果您希望在几天或几周内的不同时间点击通知,则可能需要重新考虑你的设计有点。
在NSUserDefaults中加载并存储用户选择的首选项:
<强> SomeViewController.m:强>
- (void)viewDidLoad
{
[super viewDidLoad];
// Load the user defaults
NSDate *sleepStartDate = [[NSUserDefaults standardUserDefaults] objectForKey:@"SleepStartDate"];
self.notificationIgnoreStartTime.date = sleepStartDate ? sleepStartDate : [NSDate date];
NSDate *sleepEndDate = [[NSUserDefaults standardUserDefaults] objectForKey:@"SleepEndDate"];
self.notificationIgnoreEndTime.date = sleepEndDate ? sleepEndDate : [NSDate date];
self.sleepToggleSwitch.on = [[NSUserDefaults standardUserDefaults] boolForKey:@"SleepEnabled"];
// Watch for when the app leaves the foreground
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationWillResignActive)
name:UIApplicationWillResignActiveNotification object:nil];
}
- (void)applicationWillResignActive
{
// If the timer is still waiting, fire it so the notifications are setup correctly before the app enters the background.
if (self.userOptionInteractionTimer.isValid)
[self.userOptionInteractionTimer fire];
// Store the user's selections in NSUserDefaults
[[NSUserDefaults standardUserDefaults] setObject:self.notificationIgnoreStartTime.date forKey:@"SleepStartDate"];
[[NSUserDefaults standardUserDefaults] setObject:self.notificationIgnoreEndTime.date forKey:@"SleepEndDate"];
[[NSUserDefaults standardUserDefaults] setBool:self.sleepToggleSwitch.on forKey:@"SleepEnabled"];
}
另外,请注意,如果应用程序即将进入后台(即离开前台)并且计时器仍然在滴答作响,我们会强制它触发,以便在计时器被操作系统杀死之前设置通知
请记住为所有日期选择器视图和所有IBAction以及选择器视图的代理和数据源连接代理IBActions。还要记住设置委托和数据源方法,以便填充选择器视图。
就是这样!
上述设计将确保在正确的时间触发通知,无论应用程序是在前台,后台还是已终止。 (但是,如果收到通知时应用程序位于前台,则用户将不会收到通知。而是会调用appDelegate上的application:didReceiveLocalNotification:
。
显然上面的代码不是“执行就绪”,但你应该可以填补空白。
答案 1 :(得分:1)
UISwitch
设置plist
或NSUserDefaults
中可以随处查看的属性,可能会激活和停用Picker(userInteractionEnabled等)。
同时将UISwitch
与IBAction
ValueChanged
方法连接起来,以便能够始终切换状态。
进一步使用DidSelectRowAtIndexPath:
UIPickerView
方法来更新时间(如果您需要在多个地方使用plist
或NSUserDefaults
,还可以将其保存在NSTimer
或AppDelegate
。<或者您将属性用作类属性(静态)^^
对于自动检查,我只会使用// filtered date by only time
NSDateComponents *startComps = [[NSCalendar currentCalendar] components:NSHourCalendarUnit|NSMinuteCalendarUnit fromDate:[startSilentTimePicker date]];
NSDateComponents *endComps = [[NSCalendar currentCalendar] components:NSHourCalendarUnit|NSMinuteCalendarUnit fromDate:[stopSilentTimePicker date]];
NSDateComponents *currentComps = [[NSCalendar currentCalendar] components:NSHourCalendarUnit|NSMinuteCalendarUnit fromDate:[NSDate date]];
if([[startComps date] laterDate:[currentComps date]] == [currentComps date] ||
[[endComps date] earlierDate:[currentComps date]] == [currentComps date])
{
// set the value, that tells you beeing in silent time, set a return from the methode or invert to fire notification here
}
在{{1}}中以60秒运行循环并触发一个事件,检查自身是否可以继续或返回,或者如果你想要检查已经在这里解雇它(可以扩展以确保你发动的事件不是在分钟的任何地方,而是在00秒)
用于检查是否可以触发的样本可能看起来像状态
startSilentTimePicker:晚上10:30
stopSilentTimePicker:上午7:15
activitySwitch:on
{{1}}
没有用我的代码测试它,但我正在使用类似的东西。如果你遗失了什么,请告诉我,也许我可以完成;)