iOS 导航条背景图片在plus上铺不满
2020-05-28 本文已影响0人
東玖零
iOS 解决导航条背景图片在plus上铺不满的问题
这回就当个代码搬运工吧,记录一下,直接上代码
// 读取图片
let image = UIImage(named: "nav-bg-1")
// 设置图片拉伸规则
let resImage = image?.resizableImage(withCapInsets: UIEdgeInsets.zero, resizingMode: .stretch)
// 设置导航背景图
navigationController?.navigationBar.setBackgroundImage(resImage, for: .default)