- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {
// Handle the notificaton when the app is running
NSLog(@"Recieved Notification %@",notif);
NSLog(@"local notifications count = %d", [[[UIApplication sharedApplication] scheduledLocalNotifications] count]);
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef =CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"everything9", CFSTR ("mp3"), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
AudioServicesPlaySystemSound(soundID);
[[NSNotificationCenter defaultCenter] postNotificationName:@"RELOAD_DATA"object:nil];
}
アプリケーションが到着したときに特定のビューをプッシュするためにここで何を実装できますか(たとえば、iPhoneがロックされているときにユーザーがアプリアイコンをスライドしたとき)...試し[self.navigationController pushViewController:CompletedViewController animated:YES];
ていますが、エラーが発生します...特定のものはありますかどうすればいいの?多分でdidFinishLaunchingWithOptions
?