gpt4 book ai didi

iphone - 如何在不禁用的情况下禁用用户对 UIbarbutton 的触摸?

转载 作者:太空狗 更新时间:2023-10-30 03:49:41 28 4
gpt4 key购买 nike

我的工具栏中有一个 UiBarButton 项目。我需要停用用户触摸交互UiBar 按钮。它没有 setUserInteractionEnabled 属性。当我隐藏它时,没有适当的可见性。有人能告诉我如何在不禁用 UIbarbutton 的情况下禁用用户触摸交互吗?

最佳答案

要在 UIToolBar 中添加标题,请将 UIBarButtonItem 添加到工具栏,然后将其 customView 属性设置为 UILabel。然后你可以设置标签的文本,不做任何高亮等。

// In @interface section:
@property (weak, nonatomic) IBOutlet UIBarButtonItem *titleButtonItem;

// In @implementation section:
- (void)viewDidLoad {
...
UILabel *titleLabel = [[UILabel alloc] init];
self.titleButtonItem.customView = titleLabel;
titleLabel.text = @"Some Title Text";
[titleLabel sizeToFit];
...
}

关于iphone - 如何在不禁用的情况下禁用用户对 UIbarbutton 的触摸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6212827/

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