I know how to make a navigationController's navigationBar hidden:
@implementation UINavigationBar (custom)
- (void)drawRect:(CGRect)rect {}
@end
However, when displaying a UIImagePickerController it also applied to it.
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.navigationBar.tintColor = [UIColor blackColor];
picker.navigationBar.barStyle = UIBarStyleBlackOpaque; // Or whatever style.
[self presentModalViewController:picker animated:NO];
Is there a way to only make some of the navigationController's navigationBar transparent?
Thanks.