Notificationには、LocalとPushの二種類があって、前者は発生源が手元のアプリケーション、後者は発生源が外部という事のようだ。 - (IBAction)scheduleNotification:(id)sender { DBGMSG(@"%s", __func__); NSDate *today = [NSDate date]; UILocalNotification *localNotif = [[UILocalNotification alloc] init]; if (localNotif == nil) return; localNotif.fireDate = [today dateByAddingTimeInterval:10]; localNotif.timeZone = [NSTimeZone defaultTimeZone]; localNotif.ale