0

我无法理解我应该在“setTargetRect”和 inView 中传递什么来显示 UIMenuController。目前我想在按钮点击时显示这个菜单。此视图未显示在我当前的视图中。

这就是我为设置目标矩形所做的。[menuController setTargetRect:CGRectMake(myButton.bounds.origin.x, myButton.bounds.origin.y, 0.0f, 0.0f) inView:myView];

我错过了什么。

谢谢

4

1 回答 1

0

please show the menu using

you should give height and width in Rect :

CGRectMake(myButton.bounds.origin.x, myButton.bounds.origin.y, 100.0f, 100.0f)


[menuController setMenuVisible: YES animated: YES];
于 2012-01-17T09:59:43.413 回答