简体   繁体   中英

NavigationBar not appearing in second view controller

i am working on iPhone app.. i am using navigation controller, but the when i am going to the second view controller ie to the child view controller, the navigation bar is not appearing i had tried all the solutions around. Changing the property from translucent to inferred, vice-versa, tried doing it in code in viewDidLoad, viewDidAppear, viewWillAppear, everything..

Need some help..

In simulator it is showing and working perfectly but in device it isn't. I am using iphone 4s.

Check screenshot at below location:

http://postimg.org/image/y3nzz6t79/

I wanted to use below existing Back functionality - hence the transitions:

http://postimg.org/image/r2q34a4sr/

Try to embed your second view controller with Navigation Controller.

Set Top bar property to Opaque

Add this code in ViewDidAppear

[[self navigationController] setNavigationBarHidden:NO animated:YES];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM