我有一個Viewcontroller
兩個UIViews
,一個名爲textureView
和一個objectView
。檢測子視圖上的觸摸
當我只有一個觀點我使用這個檢測觸摸:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSArray *allTouches = [touches allObjects];
for (UITouch *touch in allTouches)
{
gestureStartPoint = [touch locationInView:self.view];
if([touch view] == controlUIImageview){
NSLog(@"TOUCH DETECT");
}
}
}
我怎樣寫這部分,如果我有一些事情我想在textureView
有的在objectView
與互動?
是否需要將textureView
和controlView
設置爲setUserInteractionEnabled:TRUE
?
謝謝!
你有沒有嘗試設置textureView和對照olView to setUserInteractionEnabled:TRUE?當你嘗試時發生了什麼? –