我會改變的導航欄tintColor在viewWillAppear中: self.navigationController.navigationBar.tintColor = tintColor;
的導航欄tintColor內存泄露
: NSLog(@"before retain count:%d", [tintColor retainCount]); self.navigationController.navigationBar.tintColor = nil; NSLog(@"after retain count:%d", [tintColor retainCount]);
tintColor = [[UIColor colorWithRed:23.0/255.0 green:169.0/255.0 blue:226.0/255.0 alpha:1.0] retain];
爲什麼NSLog的 「前保持數」 和 「保留計數後」 等於?
我釋放tintColor dealloc – adamgliea