任何以突出显示模式显示按钮的方法

发布于 2024-10-06 19:18:07 字数 108 浏览 2 评论 0原文

我的滚动视图上有更多按钮,因此如果其中一个单击,我只想突出显示该按钮,直到再次单击任何按钮......

所以我只想以单击模式显示该按钮...... 。

提前致谢.....

i hav a more buttons on my scrool view so if one of them clickrd i just want to highlight the button untill the any of the button clicked again....

so i just want to show the button in clicked mode......

thanks in advance.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鲸落 2024-10-13 19:18:07

将按钮的突出显示属性设置为 YES:

myButton.highlighted = YES;

Set the button's highlighted property to YES:

myButton.highlighted = YES;
爱你是孤单的心事 2024-10-13 19:18:07

使用这两行:

[myButton setBackgroundImage: [UIImage imageNamed:@"myImage.png"]];
myButton.highlighted = YES;

不要使用:

[myButton setImage: [UIImage imageNamed:@"myImage.png"]];

这将隐藏按钮的突出显示。

Use these two lines:

[myButton setBackgroundImage: [UIImage imageNamed:@"myImage.png"]];
myButton.highlighted = YES;

Dont use:

[myButton setImage: [UIImage imageNamed:@"myImage.png"]];

This will hide the highlighting of button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文