特定のメソッドに入るたびに新しい UILocalNotification を作成したい。これは、この行に沿って配列または何かから読み取ることによって行う必要があると思いますが、わかりません。次のようなものをハードコーディングせずに動的にそのようなことを行うにはどうすればよいですか:
-(void) createNotification
{
UILocalNotification *notification1;
}
createNotification に入るたびに、notification2、notification3 などを作成できるようにしたいと考えています。特定の理由により、すべてをキャンセルせずに適切な通知をキャンセルできます。
以下は私が試みたものです。いずれにせよ、誰かが何らかの情報を提供できれば幸いです。ありがとう!
-(void) AddNewNotification
{
UILocalNotification *newNotification = [[UILocalNotification alloc] init];
//[notificationArray addObject:newNotification withKey:@"notificationN"];
notificationArray= [[NSMutableArray alloc] init];
[notificationArray addObject:[[NSMutableDictionary alloc]
initWithObjectsAndKeys:newNotification,@"theNotification",nil]];
}