我在界面构建器中设置的导航栏中有汉堡包图标。
我有多个控制器,一切看起来都不错。问题是当我显示警告对话框时:
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)
}
然后图标更改为:
为什么?为什么我在那里得到那条线?
我的汉堡包图标的大小是45×34,我在Xcode Image Assets中有它。谢谢你的帮助
答案 0 :(得分:1)
我遇到了同样的问题。 解决方案:删除“项目”(第一张图片中的标题字段)将有所帮助。