I am using local notification ,i need to update/delete the notification for that I think I have to write object to database so that I can retrieve later then I can delete from the operating system ,so my issue is that how to write object to database any help plz?
how can I write NSLocalNotification object to sqlite database
557 Views Asked by Ali At
3
There are 3 best solutions below
1

DataType of your notification column is BLOB and following code is used to enter data in DB.
UILocalNotification *localNotification;
[NSKeyedArchiver archivedDataWithRootObject:localNotification]
And to get it back as notification object use following code.
NSData *data = database column value of notification object;
UILocalNotification *notif = (UILocalNotification*)[NSKeyedUnarchiver unarchiveObjectWithData:data];
Have a look at using Core Data.