can somebody please help me to solve this, I didn't post my code because im confused with some codes so I need a set of code to create a navigation bar and navigation items in a view controller without navigation controller...kindly help me
Asked
Active
Viewed 283 times
1 Answers
0
Hope this helps : https://stackoverflow.com/a/21449603/8013132
To hide navigation bar:
[[self navigationController] setNavigationBarHidden:YES animated:YES];
To show it:
[[self navigationController] setNavigationBarHidden:NO animated:YES];

ABM
- 565
- 7
- 18
-
1thank you so much...the link which u attached https://stackoverflow.com/a/21449603/8013132 helps a lot...thank you so much... – Preethi Apr 30 '21 at 12:22