Is there any way to hide the title view in a UINavigationBar?
Thanks
Is there any way to hide the title view in a UINavigationBar?
Thanks
The titleView is a UIView :
titleView A custom view displayed in the center of the navigation bar when this item is the top item.
@property(nonatomic, retain) UIView *titleView
So I think you can try this :
[titleView setHidden:YES];