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.
是否可以在 uibutton 外部 TouchDown,然后使用 UIEventTouchDragEnter 或类似的东西在另一个 UIButton 中拖动?
我需要代码方面的帮助。我用 imageView 试过,但我会很感激有按钮的解决方案!
谢谢!
法兰胡
该UITouchDownEvent事件必须发生在按钮内部,按钮才能跟踪触摸。该UITouchDragEnter事件意味着触摸从按钮内部开始(生成UITouchDownEvent),移到按钮外部(生成UITouchDragExitEvent)',然后移回到按钮内部(生成UITouchDragEnterEvent)。
UITouchDownEvent
UITouchDragEnter
UITouchDragExitEvent
UITouchDragEnterEvent