本文介绍了在swift中设置navigationBar背景图片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下代码对我不起作用,任何人都可以帮忙弄清楚出了什么问题?
Code below is not working for me, can anyone help to figure it out what is wrong?
var image = UIImage(named: "10384605_10152519403846670_5189785375955620548_n.jpg") as UIImage
self.navigationController.navigationBar.setBackgroundImage(image , forBarMetrics:UIBarMetrics)
推荐答案
self.navigationController.navigationBar.setBackgroundImage(image,
forBarMetrics: .Default)
这篇关于在swift中设置navigationBar背景图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!