Skip to content

Instantly share code, notes, and snippets.

@yuxiangq
Created November 19, 2014 06:31
Show Gist options
  • Save yuxiangq/af83a2477e014f5f79b9 to your computer and use it in GitHub Desktop.
Save yuxiangq/af83a2477e014f5f79b9 to your computer and use it in GitHub Desktop.
UIPinchGestureRecognizer的用法
-(void)initUIPinchGestureRecognizer{
UIPinchGestureRecognizer *pinchGestureRecognizer=[[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector:(pinchHandle:)];
[self.view addGestureRecognizer:pinchGestureRecognizer];
}
-(void)pinchHandle:(UIPinchGestureRecognizer*)sender{
CGFloat scale = sender.scale;//缩放比例
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment