@interface GestureViewController () {
CGPoint previousLocation;
}
@property (nonatomic, assign) CGAffineTransform transform;
@property (nonatomic, strong) UIImageView *imgView;
@end
@implementation GestureViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image"]];
self.imgView.center = self.view.center;
self.imgView.userInteractionEnabled = YES;
UIPanGestureRecognizer *panGes = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[self.imgView addGestureRecognizer:panGes];
[self.view addSubview:self.imgView];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self.view bringSubviewToFront:self.imgView];
previousLocation = self.imgView.center;
}
- (void)handlePan:(UIPanGestureRecognizer *)uigr {
//
// CGPoint point = [uigr translationInView:self.view];
// NSLog(@"%f,%f",point.x,point.y);
// uigr.view.center = CGPointMake(uigr.view.center.x + point.x, uigr.view.center.y + point.y);
// [uigr setTranslation:CGPointMake(0, 0) inView:self.view];
// return;
CGPoint point = [uigr translationInView:self.view];
CGPoint newCenter = CGPointMake(previousLocation.x+point.x, previousLocation.y+point.y);
float halfx = CGRectGetMidX(self.imgView.bounds);
newCenter.x = MAX(halfx, newCenter.x);
newCenter.x = MIN(self.view.bounds.size.width - halfx, newCenter.x);
float halfy = CGRectGetMidY(self.imgView.bounds);
newCenter.y = MAX(halfy, newCenter.y);
newCenter.y = MIN(self.view.bounds.size.height-halfy, newCenter.y);
self.imgView.center = newCenter;
}
限制移动范围
最新推荐文章于 2022-12-09 21:42:12 发布