iPhone +检测禁用的 UIControl 的点击
我正在为一个现有应用程序开发应用程序内购买。场景就像我在应用程序中有一个功能(包含 UITextField 控件),该功能最初被禁用,当用户点击该 UITextField 时,它会显示解锁和购买该功能的消息,一旦完成,UITextField 将启用。
但问题是,由于 UITextField 最初被禁用,我无法检测到任何点击,因此我无法获得任何可以为应用内购买功能编写代码的事件。
或者
如果无法检测到禁用的 UIControl 的点击,还有什么其他选项可以实现上述功能。
请帮忙。
问候, 普拉克
I am developing In App purchase for one existing application. Scenario is something like I have a feature in application (which contain UITextField control), which is initially disabled and when user taps on that UITextField, it shows the message to unlock and buy that feature and once its done, UITextField will be enable.
But the problem is that since UITextField is disabled initially, I am not able to detect any tap on that, so I am not able to get any event where I can code for In App purchase functionality.
OR
If its not possible to detect the tap of disabled UIControl, what can be other option to achieve the above functionality.
Please help.
Regards,
Praik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
通过制作如下按钮,将不可见按钮放在文本区域上:
并将其添加为子视图。根据您想要实现的目标以及 UITextField 包含的内容,您需要将其添加到的内容可能会有所不同。
Put an invisible button over the text area by making a button like this:
and adding it as a subview. Depending on what you're trying to achieve and what your UITextField is contained in, what you need to add it to may differ.