我想實現一個需要移動UIImageView的應用程序,它放在透明網格後面。我怎麼做到的? 這是代碼:在後臺平移UIImageView?
[[self view] addSubview:myimage];
myimage.userInteractionEnabled = YES;
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[panGesture setDelegate:self];
[myimage addGestureRecognizer:panGesture];
[self.view addSubview:over];
透明層是「over」。 如果它沒有添加到視圖中,我的pan方法就可以工作。 當我添加它時,沒有任何工作。那麼,如何將我的圖像移動到透明網格後面呢? 謝謝大家。
在你的情況下添加panGestures來查看和處理移動功能。 – Balu 2013-04-29 09:07:49