奇怪的导航栏在 ios 11 Xcode 9 中拉伸

Weird NavBar stretching in ios 11 Xcode 9

我的 NavBar 按钮 atm 有点问题。我升级到 Xcode 9 / ios 11 突然 UIBarButtonItems 曾经是导航栏侧面的小按钮(就像标准 ios 应用程序中的后退或编辑按钮)开始拉伸大规模地。这是一张照片:

我的代码很简单:

self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: image2, style: .plain, target: self, action: #selector(messageScreen))

有谁知道如何解决这个问题?谢谢。

尝试为您的图标使用合适的尺寸。 人机界面指南 iOS

Swift:

let widthConstraint = button.widthAnchor.constraint(equalToConstant: 30)
let heightConstraint = button.heightAnchor.constraint(equalToConstant: 30)
heightConstraint.isActive = true
widthConstraint.isActive = true

Objective C:

[button.widthAnchor constraintEqualToConstant:30].active = YES;
[button.heightAnchor constraintEqualToConstant:30].active = YES;

// 在设置导航按钮之前添加这些行