像在UITabBarItem中一样在UIBarButtonItem下面添加Label

时间:2017-05-13 18:33:10

标签: ios swift uibarbuttonitem

基本上我想用UIBarButton来实现这个目标:

enter image description here

我尝试使用setTitle,但我最终得到了类似的内容:

enter image description here

2 个答案:

答案 0 :(得分:0)

创建自定义导航栏 - 将UIView添加到viewcontroller的顶部,并在其左下角添加UIButton。并在按钮下方标注。

答案 1 :(得分:0)

可以使用UIBarButtonItem使用自定义视图来完成。这样的事情。

<强>夫特

let image = UIImage.init(named: "image_name")
let button = UIButton.init(type: .custom)
button.frame = CGRect.init(x: 0, y: 0, width: 100, height: 40)
button.setBackgroundImage(image, for: .normal)
button.setTitle("title", for: .normal)
let barButtonItem = UIBarButtonItem.init(customView: button)