UIMenuController setTargetRect 详细信息
我无法理解我应该在“setTargetRect”中传递什么? inView 显示 UIMenuController。目前我想在单击按钮时显示此菜单。此视图未显示在我的当前视图中。
这就是我为设置目标矩形所做的事情。 [menuController setTargetRect:CGRectMake(myButton.bounds.origin.x, myButton.bounds.origin.y, 0.0f, 0.0f) inView:myView];
我缺少什么。
谢谢
I m not able to understand what should I pass in "setTargetRect" & inView to display UIMenuController. Currently I want to show this menu on button click. This view is not getting displayed in my current view.
This is what I have done to set the target rect.
[menuController setTargetRect:CGRectMake(myButton.bounds.origin.x, myButton.bounds.origin.y, 0.0f, 0.0f) inView:myView];
What m I missing.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来显示菜单:
请使用您应该在 Rect 中给出高度和宽度
please show the menu using
you should give height and width in Rect :