iOS导航条外观问题,背景图片不能铺满
作者:互联网
//swift var backGroundImage = UIImage(named: "顶部Bar") backGroundImage = backGroundImage?.resizableImage(withCapInsets: UIEdgeInsets.zero, resizingMode: UIImageResizingMode.stretch) nav.navigationBar.setBackgroundImage(backGroundImage, for: .default)
nav.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor : UIColor.white]
//OC
UIImage *backGroundImage = [UIImage imageNamed:@"顶部Bar"]; backGroundImage = [backGroundImage resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch]; [self.navigationBar setBackgroundImage:backGroundImage forBarMetrics:UIBarMetricsDefault];
标签:Bar,setBackgroundImage,iOS,resizingMode,backGroundImage,导航条,nav,navigationBar,背景 来源: https://www.cnblogs.com/yyyyyyyyqs/p/11543538.html