刚开始探索iOS SDK。我有一些按钮,需要突出显示它们一次触摸外面然后拖动。据我所知,当您单击按钮然后向外拖动然后再次向内拖动时,TouchDragEnter事件将触发。当您在按钮外部单击然后向内拖动时,是否有任何事件触发?
答案 0 :(得分:6)
亚历山大,
搜索相同的信息,我看到您的问题没有得到解答。你可能已经弄明白了,但这就是我的表现。
请注意,pointInside:withEvent:方法检查点是否位于按钮的边界内。由于触摸事件来自视图,因此您必须将其转换为按钮的坐标系。
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
for (UITouch *t in touches) {
CGPoint touchPoint = [t locationInView:self.view];
CGPoint testPoint = [self.view convertPoint:touchPoint toView:aButton];
if ([aButton pointInside:testPoint withEvent:event]) {
//Do something
}
//rest of code