我可以在我的应用程序中启用UILocalNotification
,我这样继续:
在UIViewController
if(_endDate){
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
localNotif.fireDate = _endDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"go";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
}
Appdelegate
中的:
-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{
application.applicationIconBadgeNumber = 0;
}
当通知出现时,我启动了应用程序,我正确地进入了委托,但在此之后,应用程序崩溃了。
我在IO6工作
你能帮助我吗?
答案 0 :(得分:1)
对于精简广告,你可以按照以下步骤执行此操作: -
Xcode中的- >产品 - >选择个人资料。
等到项目在指令Zombies中运行。按下配置文件,您发现您的模拟器正常运行。当你的应用程序Cresh你只需选择consol: -
你发现崩溃日志在哪里变量希望你得到它