- (void)setHidesBackButton:(BOOL)hidesBackButton animated:(BOOL)animated
can anyone tell me the meaning of above statement with an example?
- (void)setHidesBackButton:(BOOL)hidesBackButton animated:(BOOL)animated
can anyone tell me the meaning of above statement with an example?
it hides the back button in the left side of your navigation bar. but it does not prevent you from going back
please see
Description in documentation:
Example, which hides the back button but does not animate:
[item setHidesBackButton:YES animated:NO];