There is a memory leak issue, the propery should be declared as:
`@property (nonatomic, weak) id notificationDelegate;
Without the above both the delegate and the notification instance are caught in a retention cycle and neither is deallocated leading to memory leaks.
There is a memory leak issue, the propery should be declared as:
`@property (nonatomic, weak) id notificationDelegate;
Without the above both the delegate and the notification instance are caught in a retention cycle and neither is deallocated leading to memory leaks.