我的NavBar按钮atm有点问题。我升级到Xcode 9 / ios 11,突然之前UIBarButtonItems曾经是导航栏一侧的小按钮(就像你的背板或标准ios应用程序中的编辑按钮)已经开始大规模扩展。这是一张照片:
我的代码很简单:
self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: image2, style: .plain, target: self, action: #selector(messageScreen))
有谁知道如何解决这一问题?谢谢。
迅速:
let widthConstraint = button.widthAnchor.constraint(equalToConstant: 30)
let heightConstraint = button.heightAnchor.constraint(equalToConstant: 30)
heightConstraint.isActive = true
widthConstraint.isActive = true
目标C:
[button.widthAnchor constraintEqualToConstant:30].active = YES;
[button.heightAnchor constraintEqualToConstant:30].active = YES;
//在设置导航按钮之前添加这些行
尝试使用适合您图标的大小。 Human Interface Guidelines iOS