`UINavigationBar` and `UINavigationItem` are commonly used controls in iOS development. Today I will introduce six tips about the navigation bar. 1. Set the navigation bar title self.title=@"iOS Development: iOSDevTip"; How to set it up: [self.navigationController.navigationBarsetBarStyle:UIBarStyleBlack]; `UIBarStyle` style: typedefNS_ENUM(NSInteger,UIBarStyle){ UIBarStyleDefault = 0, UIBarStyleBlack = 1, UIBarStyleBlackOpaque =1,//Deprecated.UseUIBarStyleBlack UIBarStyleBlackTranslucent=2,//Deprecated.UseUIBarStyleBlackandsetthetranslucentpropertytoYES }; `UIBarStyleDefault` is the default style, `UIBarStyleBlack` is black and opaque. `UIBarStyleBlackOpaque` and `UIBarStyleBlackTranslucent` are already deprecated. If you want to set the navigation bar transparent, you can add the following code: self.navigationController.navigationBar.translucent=YES; self.navigationItem.title=@"test"; The dumber way is: self.navigationItem.title=@""; You can also set it like this: [[UIBarButtonItemappearance]setBackButtonTitlePositionAdjustment:UIOffsetMake(0,-60)forBarMetrics:UIBarMetricsDefault]; self.navigationItem.leftBarButtonItem=[[UIBarButtonItemalloc]initWithTitle:@"back"style:UIBarButtonItemStylePlaintarget:selfaction:@selector(back:)]; -(void)back:(id)sender { [self.navigationControllerpopViewControllerAnimated:YES]; } 6. What to do if the left swipe back gesture fails If you set `leftBarButtonItem` as in the previous step, the left swipe back gesture will be invalid. Just set the `UIGestureRecognizerDelegate` proxy: self.navigationController.interactivePopGestureRecognizer.delegate=self; The above are six tips about the navigation bar. For more iOS development related technologies, please follow my WeChat public account iOS Development: **iOSDevTip** |
<<: Technical interview strategies worth reading
Lin Yu Little Bookboy Thinking Course, quickly cap...
Today I bring you the latest traffic rankings of ...
I’m sure you were all flooded with messages about...
Beijing time, December 31 morning news, the devel...
Let’s talk about Pinduoduo today. New Market In t...
A project for everyone to make money by hanging u...
On the morning of August 2, Apple released the fo...
introduction Looking at the emerging fields in th...
Countly 15.3 beta is released. This version has t...
Usually, there are very few women around me who e...
According to the latest news released by the Shan...
The YouTube video platform is not like other soci...
At the end of last year, Apple admitted that it h...
[51CTO.com Quick Translation] AV-TEST Institute i...
For products, activities are an effective way to ...