我需要将本地通知设置为每天上午9点触发。任何帮助,将不胜感激。

最佳答案

[formatter setDateFormat:[NSDateFormatter dateFormatFromTemplate:@"yyyy-MM-dd HH:mm:ss"
                                                         options:0
                                                          locale:nil]];
[formatter setTimeZone:[NSTimeZone localTimeZone]];

notification.fireDate = [formatter dateFromString:@"2010-10-21 09:00:00"];
notification.repeatInterval = NSDayCalendarUnit;

关于iphone - 如何将UILocatNotification设置为每天上午9点触发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6078964/

10-13 03:59