ローカル通知で plist ファイルに保存されているデータを表示するにはどうすればよいですか?? iOSでローカル通知を作成する方法は、plistファイルからデータを読み取りますか? 以下のコードを使用してアラート ビューにデータを表示しますが、時間に応じてこのデータを変更するにはどうすればよいですか?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if (localNotif) {
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"hhh" message:@"Data for the first day" delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];
[alert show];
}
return YES;
}
ありがとうございました。