Overview:
UILocalNotification
and making changes to it to the newly created instanceUILocalNotification
How I am copying
UILocalNotification
by invoking the method copy
Question
mutableCopy
is not implemented for UILocalNotification
scheduleLocalNotification:
create a new copy anyway ?copy
's fine.mutableCopy
generally applies to types which distinguish immutable and mutable flavors. since the type does not make that distinction, copy
is 'mutable'.scheduleLocalNotification:
creates a copy of the parameter. explicitly copying is not strictly necessary.