Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注一本书来学习 IO 编程。对于 UIButton,它应该有一个点击动作。但是我只看到了一些动作,比如着陆等。
另外,想知道为什么默认操作不是“touch down”而是“touchUpInside”
我正在使用 XCode 4.3。
表示 iOS 中的单击操作,但是touchUpInside,因为单击是鼠标事件
touchUpInside
touchUpInside, 表示用户在一个按钮上触摸,然后触摸,而他仍然在同一个按钮上,这是您想要点击按钮时的正常行为
在情节提要中,您可以右键单击UIButton并查看可用于 UIButton 的事件列表,然后根据您的要求选择适当的事件。
UIButton
对于类似点击的操作,您可以使用Touch Up Inside事件。
Touch Up Inside