HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – UILocalNotification应该每个工作日重复,但周末也会发生大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UIlocalnotification,应该是一天一个星期一到星期五,但不是在周末.我认为将通知的repeaTinterval属性设置到NSWeekdayCalendarUnit将会实现这一点.可悲的是,我的通知仍在周末开放.有人可以建议为什么吗这是我的代码
UIlocalnotification *localnotification = [[UIlocalnotification alloc] init];

localnotification.alertAction = @"View";
localnotification.alertBody = NSLocalizedString(@"ALERT_messaGE",nil);
localnotification.soundName = UIlocalnotificationDefaultSoundName;

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MM-dd-yyyy HH:mm"];
[dateFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"America/Toronto"]];

// Notification fire times are set by creaTing a notification whose fire date 
// is an arbitrary weekday at the correct time,and having it repeat every weekday
NSDate *fireDate = [dateFormatter dateFromString:@"01-04-2012 11:00"]; 

localnotification.fireDate = fireDate;
localnotification.repeaTinterval = NSWeekdayCalendarUnit;
[[UIApplication sharedApplication] schedulelocalnotification:localnotification];
            break;

[localnotification release];

解决方法

iOS中的平日就是一星期内的一天.它没有“工作周”的内涵,而不是周末.

文档说明它更清楚一点,建议您使用1-7作为单位:

资料来源:http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSCalendar_Class/Reference/NSCalendar.html

要正确设置从星期一到星期五的通知,这里有一些框架代码.你必须执行它5次,所以将其封装在一个fireDate参数的方法中是很好的.我已经展示了如何在星期一做到这一点.

UIlocalnotification *notification = [[[UIlocalnotification alloc] init] autorelease];

// Set this to an NSDate that is for the time you want,on Monday
notification.fireDate = fireDate;            

// Repeat every week
notification.repeaTinterval = NSWeekCalendarUnit;

大佬总结

以上是大佬教程为你收集整理的ios – UILocalNotification应该每个工作日重复,但周末也会发生全部内容,希望文章能够帮你解决ios – UILocalNotification应该每个工作日重复,但周末也会发生所遇到的程序开发问题。

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

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