タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

programmingとnotificationに関するMuneOchiのブックマーク (1)

  • Cocoa練習帳(2012-02-03)

    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

    MuneOchi
    MuneOchi 2012/07/11
    local notification
  • 1