奇怪的NavBar在ios 11 Xcode 9中伸展

问题描述 投票:1回答:2

我的NavBar按钮atm有点问题。我升级到Xcode 9 / ios 11,突然之前UIBarButtonItems曾经是导航栏一侧的小按钮(就像你的背板或标准ios应用程序中的编辑按钮)已经开始大规模扩展。这是一张照片:

The Problem

我的代码很简单:

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

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

ios swift xcode ios11 xcode9
2个回答
5
投票

迅速:

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;

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


0
投票

尝试使用适合您图标的大小。 Human Interface Guidelines iOS

© www.soinside.com 2019 - 2024. All rights reserved.