gpt4 book ai didi

ios - 如何将导航按钮一直限制在左侧或右侧? (iOS)

转载 作者:行者123 更新时间:2023-11-29 11:31:41 26 4
gpt4 key购买 nike

我试图将导航栏按钮一直左右对齐,因为屏幕边缘和按钮之间有一些空间。有什么想法可以将按钮的前导 anchor 限制在导航栏/屏幕的前缘吗?

最佳答案

添加导航项时,不需要设置约束,需要设置框架。

我遇到过你的问题,目前在 iOS 11 上遇到过。我使用的一个快速解决方案是添加一个清晰的负间隔条按钮。像这样:

internal lazy var button_Skip: UIButton = {
let button = UIButton(type: .custom)
button.setup("SKIP".localized(), normalTextColor: .blue)
button.isHidden = true
return button
}()

let barButton = UIBarButtonItem(customView: self.button_Skip)
self.button_Skip.frame = CGRect(x: 0, y: 0, width: 55.0, height: 44.0)
let negativeSpacer = UIBarButtonItem(barButtonSystemItem: UIBarButtonItem.SystemItem.fixedSpace, target: nil, action: nil)
if #available(iOS 11.0, *) {
negativeSpacer.width = -10.0
}

希望对您有所帮助。

关于ios - 如何将导航按钮一直限制在左侧或右侧? (iOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52857877/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com