iOS导航右栏按钮项目 - 对话框后图标已更改

时间:2015-09-24 10:11:07

标签: ios swift ios8 uinavigationbar uibarbuttonitem

我在界面构建器中设置的导航栏中有汉堡包图标。

Right bar button - Interface builder

我有多个控制器,一切看起来都不错。问题是当我显示警告对话框时:

class func showSimpleAlert(parent:UIViewController, title:String, message:String) {
    let alert = UIAlertController(title: title, message: message, preferredStyle: .Alert)
    alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
    parent.presentViewController(alert, animated: true, completion: nil)
}

然后图标更改为:

Hamburger icon problem

为什么?为什么我在那里得到那条线?

我的汉堡包图标的大小是45×34,我在Xcode Image Assets中有它。谢谢你的帮助

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题。 解决方案:删除“项目”(第一张图片中的标题字段)将有所帮助。