在将UIPanGestureRecognizer应用于同一按钮时,如何访问uibutton

时间:2012-01-19 05:47:08

标签: xcode4 ios4 uibutton uipangesturerecognizer

我是ios开发的新手。现在,我正在使用GestureRecognizer开发一个小应用程序。 在我的应用程序中有一些uibuttons,这个按钮响应UIPanGestureRecognizer。 现在我想确定在应用UIPanGestureRecognizer时拖动哪个按钮。

如果有人知道。请清除我的问题。

1 个答案:

答案 0 :(得分:1)

也许这样的事情对你有用

- (void)pan:(UIPanGestureRecognizer *)gesture
{
    UIButton *button = (UIButton *)gesture.view;
}