标签: objective-c cocoa-touch uiview uibutton uipangesturerecognizer
我是iOS开发的新手。现在我正在实现一个UIPanGestureRecognizer模型应用程序。我UIButton有一个UIPanGestureRecognizer。我的问题是,如何从超级视图访问UIButton的驻留坐标(例如UIView,UIScrollView等?)
UIPanGestureRecognizer
UIButton
UIView
UIScrollView
如果有人知道请帮助我。
答案 0 :(得分:0)
您可以使用
CGRect rectInSuperView = [button convertRect:button.frame toView:superview];
检查documentation