UINavigationBar-使用总结
Posted 爱木之心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UINavigationBar-使用总结相关的知识,希望对你有一定的参考价值。
UINavigationBar *navBar = self.navigationController.navigationBar;
[navBar setBarStyle:UIBarStyleDefault];
typedef NS_ENUM(NSInteger, UIBarStyle) {
UIBarStyleDefault = 0,
UIBarStyleBlack = 1,
UIBarStyleBlackOpaque = 1, // Deprecated. Use UIBarStyleBlack
UIBarStyleBlackTranslucent = 2, // Deprecated. Use UIBarStyleBlack and set the translucent property to YES
};
if ([navBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]){
// UIBarMetricsLandscapePhone
[navBar setBackgroundImage:[UIImage imageNamed:@"图片名称"] forBarMetrics:UIBarMetricsDefault];
}
UIBarMetricsLandscapePhone:用横着时UINavigationBar的标准尺寸来显示UINavigationBar
以上是关于UINavigationBar-使用总结的主要内容,如果未能解决你的问题,请参考以下文章