views:

52

answers:

1

Instruments reports this a memory leak (98.6%, whatever that means):

[[NSNotificationCenter defaultCenter] postNotificationName:kNotificationSomeNotification object:self];

"self" is a subclass of UIImageView. Is including "self" in the notification causing a memory leak? If so, how do you resolve it?

+1  A: 

Better check your notification observer. The cause of memory leak might be there.

tia