1
我有2的UIImageViews foo1,foo2的未互相交叉,並且我有3個功能touchesBegan
,touchesMoved
,touchesEnded
touchesMoved的UIView檢測
- (void) touchesMoved:(NSSet *) touches withEvent:(UIEvent *) event
{
UITouch *touch = [touches anyObject];
if (foo1 == [touch view]){
NSLog(@"foo1");
}
if (foo2 == [touch view]){
NSLog(@"foo2");
}
}
我持有觸摸上foo1和移動我手指foo2的,但從nslog我得到foo1消息。
有沒有可能在touchesMoved
函數中確定觸摸foo 2時的功能?
謝謝