如何禁用 iPhone 中的多个按钮?
如何在按下一个按钮时一次禁用多个按钮,而不为 iPhone 中的每个按钮创建插座?
提前致谢...
How to Disable Multiple buttons at a time when one button pressed, without creating outlets foreach one in iphone?
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为 UIButtons 设置按钮标签,并且可以使用 for-in 循环循环遍历视图中的每个按钮。
这应该可以解决您的问题,并且您可以使用按钮的标签来引用按钮
You can set button tags for you UIButtons and for looping through each button in a view you can use the for-in loop.
This should solve your problem and the tag to buttons can u used for referencing the buttons
您应该为每个按钮设置 YES
exclusiveTouch
属性。但在 IB 中你不能这样做。因此,您可能应该循环遍历主视图中的所有子视图,并为所有按钮设置此属性。You should set YES
exclusiveTouch
property for each button. But you cannot do this in IB. So you should maybe loop through all subviews in main view and set this property for all buttons.