简体   繁体   中英

Get Coordinates of view on which longpressGesture recogniser is added

I have added longpressGesture recognizer on view & given NoofTouchesRequired=2 .I want to get the coordinates of both the views on which i have longpressed.

MyCode is as below:-

 //---long press gesture---

   UILongPressGestureRecognizer *longpressGesture = [[UILongPressGestureRecognizer alloc]  initWithTarget:self action:@selector (handleLongpressGesture:)];

  longpressGesture.minimumPressDuration = 4;

  longpressGesture.numberOfTouchesRequired = 2;

  [viewLongPress addGestureRecognizer:longpressGesture];

  [longpressGesture release];

UIGestureRecognizer有一个locationInView:方法。

-(void)handleLongpressGesture:(UIGestureRecognizer *)reco{
    UIView *theSuperview = self.view;
    CGPoint touchPointInSuperview = [reco locationInView:theSuperview];
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM