我是ios开发的新手。现在,我正在使用GestureRecognizer开发一个小应用程序。 在我的应用程序中有一些uibuttons,这个按钮响应UIPanGestureRecognizer。 现在我想确定在应用UIPanGestureRecognizer时拖动哪个按钮。
如果有人知道。请清除我的问题。
答案 0 :(得分:1)
也许这样的事情对你有用
- (void)pan:(UIPanGestureRecognizer *)gesture
{
UIButton *button = (UIButton *)gesture.view;
}