Hi,
How to change style in top bar of navigation controller?
I can change title and add right button:
But can't set style or hide of the top navigation bar:
How to solve the problem?
Thank you
How to change style in top bar of navigation controller?
I can change title and add right button:
PHP:
self.title = @"My App";
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"FConnect" style:UIBarButtonItemStyleDone target:self action:@selector(onFacebookConnect:)]autorelease];
PHP:
self.navigationController.toolbar.barStyle = UIBarStyleBlackTranslucent;
self.navigationController.navigationBarHidden = YES;
How to solve the problem?
Thank you