listenzz / HBDNavigationBar

A custom UINavigationBar for smooth switching between various states, including bar style, bar tint color, background image, background alpha, bar hidden, title text attributes, tint color, shadow hidden...
MIT License
1.65k stars 215 forks source link

hbd_barImage 设置无效。。。。。 #117

Open IIIOS opened 4 years ago

KevinXinSuiLu commented 4 years ago

xcode 11.3.1 swift 项目也碰到同样的问题

KevinXinSuiLu commented 4 years ago

延迟加载就可以了 DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
//修改导航栏背景图片(使用代码动态生成的纯色图片) let image = self.createImageWithColor(.orange, frame: CGRect(x: 0, y: 0, width: 1, height: 1)) self.navigationController?.navigationBar.setBackgroundImage(image, for: .default) }