我在自定义单元格中有一个 UIButton 。选择单元格后,按钮也会将其状态更改为 “highlighted”。
我想阻止这种行为。该按钮只有在被特别触摸时才会改变其状态(我在 IBAction 中处理了这一点)。
有可能吗?
Best Answer-推荐答案 strong>
您可以继承 UIButton 并覆盖 setSelected: 方法而不调用 [super setSelected:] 或使用 [ 调用它super setSelected:NO];
如果要自己选择,调用[super setSelected:YES];
关于iphone - UIButton 继承选中状态,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/14070827/
|