问题描述
解决方案
-(void)changeLocktion:(UILongPressGestureRecognizer *)longPress
{
UIButton *btn = (UIButton *)longPress.view;
}
解决方案二:
在按钮上添加长按手势的一些问题
iOS 添加手势
ios的手势的添加
解决方案三:
响应长按消息后,用LocationInView等来判断在哪一个按钮的view中。
解决方案四:
UITouch *touch = [touches anyObject];CGPoint point = [touch locationInView:self.view];
取出触摸点的坐标再判断一下就可以了
时间: 2024-09-29 12:37:04