我正在製作書籍應用程序,並使用UIScrollView進行分頁。一切都很順利,但是當我開始編寫拖放圖像的函數時,它不起作用,但代碼在沒有UIScrollView的其他項目中工作。目標C:拖放一個UIScrollView
是否可以在UIScrollView上應用拖放功能?
這裏是我的代碼
image1 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image1.png"]];
[image1 setFrame:CGRectMake(2834, 225, 150, 184)];
[scrollPaging addSubview:image1];
- (void) touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:self.view];
image1.center = location;
}
觸摸事件可能正在被滾動視圖接收。你檢查了嗎? – 2012-01-03 10:33:16