Keep iPhone UIButton Highlighted(保持 iPhone UIButton 突出显示)
问题描述
我有以下代码片段:
@interface Foo: UIViewController {
...
UIButton *myButton;
...
}
@implementation Foo
@implementation Foo
- (void) viewDidLoad {
...
myButton.highlighted = YES;
...
}
当我运行应用程序时,按钮以蓝色突出显示(默认行为).它按我的预期工作.
When I run the app, the button is highlighted in blue (default behavior). It works as I expected.
但是在按下按钮一次后,按钮不再突出显示.
But after pressing the button once, the button is no longer highlighted.
然后,我创建了一个 IBAction
highlightButton
来处理 Touch Up Inside
事件,在该事件中我显式调用 myButton.highlighted = Yes;代码>.不幸的是,按钮突出显示仍然没有保留.
Then, I created an IBAction
highlightButton
to handle Touch Up Inside
event where I explicitly call myButton.highlighted = Yes;
. Unfortunately, the button highlight still does not stay.
如何在按下后仍以蓝色突出显示?
How can I keep it highlighted in blue even after being pressed?
推荐答案
解决方法是在下一个runloop中做[button setHighlighted:YES]
:
The solution is to do [button setHighlighted:YES]
in the next runloop:
- (void)highlightButton:(UIButton *)b {
[b setHighlighted:YES];
}
- (IBAction)onTouchup:(UIButton *)sender {
[self performSelector:@selector(highlightButton:) withObject:sender afterDelay:0.0];
}
这篇关于保持 iPhone UIButton 突出显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:保持 iPhone UIButton 突出显示


- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- UITextView 内容插图 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- URL编码Swift iOS 2022-01-01