iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – xcode – 按时间安排本地通知(每天早上6点)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我正在使用 Xcode 4.3.2,如何在每天早上6点设置本地通知“dateToFire”? -(void)notification { UILocalNotification *localNotification = [[[UILocalNotification alloc] init] autorelease]; if (!localNotification)
我正在使用 @L_419_0@ 4.3.2,如何在每天早上6点设置本地通知“dateToFire”?

-(void)notification
{
    UIlocalnotification *localnotification = [[[UIlocalnotification alloc] init] autorelease];

    if (!localnotification) 
        return;

    // Current date
    NSDate *date = [NSDate date]; 
    NSDate *dateToFire = //Everyday: 6AM;

    // Set the fire date/time
    [localnotification setFireDate:dateToFire];
    [localnotification setTimeZone:[NSTimeZone defaultTimeZone]];
    [localnotification setAlertBody:@"Notification" ];      

    [[UIApplication sharedApplication] schedulelocalnotification:localnotification];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self notification];
}

解决方法

使用CalendarComponents将小时设置为6,并将localnotification.repeaTinterval设置为NSDayCalendarUnit

NSCalendar *calendar = [NSCalendar currentCalendar]; // gets default calendar
NSDateComponents *components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit |  NSDayCalendarUnit | NSHourCalendarUnit | NSminuteCalendarUnit) fromDate:[NSDate date]]; // gets the year,month,day,hour and minutesfor today's date
[components setHour:18];
[components setminute:0];

localnotification.fireDate = [calendar dateFromComponents:components];

大佬总结

以上是大佬教程为你收集整理的iphone – xcode – 按时间安排本地通知(每天早上6点)全部内容,希望文章能够帮你解决iphone – xcode – 按时间安排本地通知(每天早上6点)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。