objective c - xcode 5 dealloc void ARC Error -
i error (arc forbids explicit message send of 'dealloc'), if write:
- (void)dealloc { self.slider = nil; self.tabbar = nil; [super dealloc]; }
hope can me. lot answering.
remove [super dealloc]
, it's automatic under arc.
should just:
- (void)dealloc { self.slider = nil; self.tabbar = nil; }
Comments
Post a Comment