iOS.LocalNotification は、Apple UIKit フレームワークにある UILocalNotification クラス周辺のラッパーです。これは、iPhone/iPad/iPod Touch でのみ利用できます。
It represents notifications that an application can schedule for presentation to its user at specific dates and times.
The operating system is responsible for delivering the notification at the specified time.
Local notifications are similar to remote notifications but are scheduled and delivered locally and do not require connection with remote servers.
ローカル通知は NotificationServices クラスを使用して処理されます。
defaultSoundName | デフォルトのサウンド名を取得(読み込み専用) |
alertAction | アクションボタンやスライダーのタイトル |
alertBody | アラートが通知されたときに表示するメッセージ |
alertLaunchImage | ユーザーがアクションボタンをタップするときの、アプリ起動時の画像 |
applicationIconBadgeNumber | アプリアイコンのバッチとして表示される数 |
fireDate | 通知をする時間 |
hasAction | アラートアクションが表示されているかの確認 |
repeatCalendar | アラートが表示されたときに再生されるサウンドを含むファイル名 |
repeatInterval | カレンダーを更新する間隔 |
soundName | アラートが表示されたときに再生するサウンド名 |
timeZone | タイムゾーン |
userInfo | カスタム情報を dictionary クラスで作成し、設定する |
LocalNotification | 新規のローカル通知を作成します |