标签:ios
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction:)];
[self.timeBackView addGestureRecognizer:tap];
- (void)tapAction:(UITapGestureRecognizer *)tap
{
//当前坐标
CGPoint p = [tap locationInView:tap.view];
}标签:ios
原文地址:http://blog.csdn.net/u013243469/article/details/44811309