0
我有一個問題...UITouch不能返回正確的位置
我想要在主視圖下面的單視圖中獲取UITouch位置。
我的代碼是:
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint previous = [[touches anyObject] previousLocationInView:toolBarView];
CGPoint current = [[touches anyObject] locationInView:toolBarView];
}
的問題是,它返回的任何視圖,而不是toolbarView位置。
怎麼回事?
謝謝,我已經解決了它。用戶交互未啓用toolBarView。 – xXDraklordXx