AFDropdownNotification icon indicating copy to clipboard operation
AFDropdownNotification copied to clipboard

notificationDelegate is declared as a strong reference property which causes the delegate to not be deallocated

Open apiejh opened this issue 8 years ago • 0 comments

There is a memory leak issue, the propery should be declared as: `@property (nonatomic, weak) id<AFDropdownNotificationDelegate> 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.

apiejh avatar Aug 28 '16 17:08 apiejh