iOSでのPush通知については話題にされることも多いので,ここではRemoteNotificationとLocalNotificationの違いなどについては特に触れません. 今回題材にするのはLocalNotificationのみです. UILocalNotificationの通知を発行する これはObjective-Cの時とさほど変化はない. var notification = UILocalNotification() notification.fireDate = NSDate() // すぐに通知したいので現在時刻を取得 notification.timeZone = NSTimeZone.defaultTimeZone() notification.alertBody = "message" notification.alertAction = "OK" notificat