`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
Communities , official accounts, product promotio...
A few days ago, a client consulted the editor. Th...
Along with the collision of a red Ferrari and a g...
In user operations , in addition to the important...
Some time ago, MarkD discussed with us many usefu...
[[428363]] Good news! WeChat and Alipay announced...
At present, the development of pure electric vehi...
In 2021, the local recurrence of the epidemic has...
The spring season ushers in the new year's wa...
There's no doubt that the iPhone XS and iPhon...
Introduction: I have been engaged in SEO website ...
With the development of the advertising and marke...
I had the same experience. I was tricked by the s...
Many people were shocked after watching the Micro...
The third quarter is the peak tourist season. Als...