如何搜索uibutton的userinteraction选项是YES还是NO

发布于 2024-12-18 11:46:55 字数 383 浏览 1 评论 0原文

我正在尝试使用 UIButtons 实现手势识别器类型应用程序。 UIButtons 排列在 NSMutableArray 中。最初将所有 UIButtons 的用户交互选项设置为 NO。发生另一个按钮事件 (setEvent:) 将 UIButtons< 数组中的用户交互选项更改为 YES(一次仅设置一个按钮的用户交互选项) /代码>。现在我想搜索数组以检查 UIButton 用户交互 属性是否为 YES

如果有人知道请帮助我。提前致谢。

I am trying to implement gesture recognizer type application with UIButtons. The UIButtons are arranged in a NSMutableArray.Initially set the user interaction option of all UIButtons are NO. Occurring of an another button event(setEvent:) change the user interaction option to YES (Only one button's userinteraction option set at a time) from array of UIButtons. Now i want to search the array for check the UIButton user interaction property is YES.

If anybody know please help me. Thanks in advance.

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

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

发布评论

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

评论(1

失眠症患者 2024-12-25 11:46:55
for (UIButton *button in yourButtonsArray) {
    if (button.userInteractionEnabled) {
        ....
    }
}
for (UIButton *button in yourButtonsArray) {
    if (button.userInteractionEnabled) {
        ....
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文