iPhone:每日本地通知 [英] iPhone : Daily local notifications

查看:127
本文介绍了iPhone:每日本地通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试实施本地通知

I am trying to implement local notification

这就是我设置的

    // Current date
    NSDate *date = [NSDate date]; 

    // Add one minute to the current time
    NSDate *dateToFire = [date dateByAddingTimeInterval:20];

    // Set the fire date/time
    [localNotification setFireDate:dateToFire];
    [localNotification setTimeZone:[NSTimeZone defaultTimeZone]];

我想把固定时间(每日)开始推动而不是20。

Instead of 20, I want to put a fixed time(daily)to start push.

例如:我想每隔早上6点弹出通知。

For ex:I want to push notification pop up at every 6:00AM.

怎么做?

谢谢

推荐答案

您只需要正确创建一个 NSDate 对象是您的开火日期(时间)。而不是使用 [NSDate dateByAddingTimeInterval:20] ,请使用以下内容:

You just need to properly create a NSDate object to be your fire date (time). Instead of using [NSDate dateByAddingTimeInterval: 20], use something like this:

NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setDay: 3];
[components setMonth: 7];
[components setYear: 2012];
[components setHour: 6];
[components setMinute: 0];
[components setSecond: 0];
[calendar setTimeZone: [NSTimeZone defaultTimeZone]];
NSDate *dateToFire = [calendar dateFromComponents:components];

这是Apple NSDateComponents API文档

然后当你添加通知日期,将重复间隔设置为一天:

And then when you add the date to the notification, set the repeat interval to one day:

[localNotification setFireDate: dateToFire];
[localNotification setTimeZone: [NSTimeZone defaultTimeZone]];
[localNotification setRepeatInterval: kCFCalendarUnitDay];

与所有与日期相关的代码一样,请确保在切换到夏令时期间测试其工作原理,如果您的时区使用夏令时。

As with all date related code, make sure to test how this works during the switch to daylight savings time, if your time zone uses daylight savings time.

这篇关于iPhone:每日本地通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆