0
即時通訊面臨的問題是,在上面的部分我有滾動視圖有不同的圖像點擊它將克隆到屏幕上的相同圖像。我已啓用觸摸,所以我可以拖動它,但是當我點擊另一個圖像,它涉及到屏幕我可以拖動那個anotther圖像,但不是現在的前一個。任何人都可以有一個解決方案,所以我可以拖動多個圖像點擊它。我可以把4-5放在上面供我使用。iphone形象。多點觸摸/拖動
我有使用此代碼: 代碼:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch=[[event allTouches]anyObject];
CGPoint location = [touch locationInView:touch.view];
g1.center = location;
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[self touchesBegan:touches withEvent:event];
}
在此先感謝。