我要救UILocalNotifications如從那裏我能找回它,可能能夠保存多個UILocalNotification以下,最好是某處的對象的對象是否有可能將UILocalNotification對象保存到plist或sqlite數據庫,或其他地方像NSUserDefaults?
UILocalNotification *local=[[UILocalNotification alloc]init];
[local setAlertBody:str];
[local setFireDate:dat];
NSDictionary *infoDict = [NSDictionary dictionaryWithObject:@"some_id_to_cancel" forKey:@"ID"];
local.userInfo = infoDict;
//local.hasAction=NO;
//[[UIApplication sharedApplication] presentLocalNotificationNow:local];
[[UIApplication sharedApplication] scheduleLocalNotification:local];
[local release];
現在我想本地對象保存在某個地方,如plist中或任何存儲我從哪裏可以找回他們。
你能解釋多一點,在一行語句中發生了什麼以及什麼是參數類型? –
和我將如何檢索它,希望你會給出一個更好的代碼和好的解釋@moonlight –
我想你會在這個http://developer.apple.com/library/mac/ipad/#documentation/找到更詳細的信息。 Cocoa/Conceptual/Archiving/Archiving.html#// apple_ref/doc/uid/10000047i –