gpt4 book ai didi

xamarin.ios - 在运行时更改 UIBarButton 标识符

转载 作者:行者123 更新时间:2023-12-04 05:44:25 24 4
gpt4 key购买 nike

当我的 slider 的值发生变化时,我想更改我的 UIBarButton 的标识符。我是这样尝试的:

var button = new UIBarButtonItem(UIBarButtonSystemItem.Save);
this.Pad_btnClose = null;
this.Pad_btnClose = button;

但它不起作用。我也试过这样:
this.Pad_btnClose = new UIBarButtonItem(UIBarButtonSystemItem.Save);

也不行。

最佳答案

设置该变量(或 socket ,你不说哪个)不会从屏幕上删除 UIBarButtonItem。

为此,您必须为 UIToolbar 创建一个 socket ,然后调用:

yourToolbar.Items = new UIBarButtonItem[] { yourNewButtonItem };

或者如果你想让它动画:
yourToolbar.SetItems(new UIBarButtonItem[] { yourNewButtonItem }, true);

这将覆盖屏幕工具栏中的按钮项目列表。

关于xamarin.ios - 在运行时更改 UIBarButton 标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10878849/

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