I have the following property
.h
@property (nonatomic, strong) NSMutableDictionary *cache;
.m
@synthesize cache = _cach
Regardless of whether you are using ARC or not, they will not be cleaned up in -viewDidUnload. You have to explicitly release them (or set them to nil under ARC.)
-viewDidUnload
nil