Overview:
- I am copying an instance of
UILocalNotification
and making changes to it to the newly created instance - Then I schedule the newly created instance of
UILocalNotification
How I am copying
- I am copying the instance of
UILocalNotification
by invoking the methodcopy
Question
- Am I doing the correct thing or should I be using a different method to create a mutable copy. (
mutableCopy
is not implemented forUILocalNotification
- Does copy actually do a mutable copy ?
- Is it necessary to create a copy at all, will
scheduleLocalNotification:
create a new copy anyway ?