AFDropdownNotification
AFDropdownNotification copied to clipboard
notificationDelegate is declared as a strong reference property which causes the delegate to not be deallocated
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.