用户在应用iPhone中抓取并移动图像

时间:2014-01-16 17:19:27

标签: iphone uiimageview touch

我正在尝试让用户抓住并在我正在构建的应用中移动图片。

我已经创建了像这样的UIImageView

DragView.h
#import <UIKit/UIKit.h>

@interface DragView : UIImageView{

}

@end

DragView.m

#import "DragView.h"

@implementation DragView

-(void) touchesMoved:(NSSet *)set withEvent:(UIEvent *)event {
    CGPoint p = [[set anyObject] locationInView:self.superview];
    self.center = p;
}



@end

然后我将.h文件导入到我的主View控制器中,并将DragView分配给IB Identity Inspector中的UIImageView。

我必须遗漏一些东西,因为当我构建并运行然后触摸图像时它不会移动。什么,我错过了?

0 个答案:

没有答案