I have a property in class mainView declared thusly:
@property (nonatomic, retain) FriendsView *friendsView;
For some reason, it's not being dealloc'ed when mainView is. *Unless* I do self.friendsView = nil
in mainView's dealloc method.
Very odd. But wait, it gets odder..
When I run it in instruments, it dealloc's properly, 100% of the time.
When I dun it normally, with breakpoints and NSLog's in friendsView's dealloc method, they are never hit.
Any ideas as to what could be going on?
Edit: I should've said, I'm using ARC. Hence my confusion.