首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

闹钟重要实现代码

2012-08-09 
闹钟主要实现代码UILocalNotification *notification[[UILocalNotification alloc] init]????if (notifi

闹钟主要实现代码

UILocalNotification *notification=[[UILocalNotification alloc] init];

????if (notification!=nil)?

????{???

????????notification.repeatInterval=NSDayCalendarUnit;

????????NSDate *now1=[NSDate new];

????????notification.fireDate=[now1 dateByAddingTimeInterval:hm];

????????notification.timeZone=[NSTimeZone defaultTimeZone];

????????notification.soundName = @"ping.caf";

????????notification.alertBody = [NSString stringWithFormat:NSLocalizedString(@"你设置的时间是:%i : %i .",nil),htime1,mtime1];

?????? [[UIApplication sharedApplication]?? scheduleLocalNotification:notification];

????????}

这个是建立后台消息对象

如果是程序开这的可以用UIApplication的代理方法

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{

来实现闹钟的响铃

热点排行