如何控制Copy&粘贴UITextField的弹出位置?

时间:2013-01-25 15:32:52

标签: ios objective-c cocoa-touch uitextfield

是否可以控制Paste的{​​{1}}弹出位置,例如,高于或低于UITextField

1 个答案:

答案 0 :(得分:1)

是的,我相信您正在寻找的方法是setTargetRect:inView:。您可以在Apple Docs中详细了解相关信息。

以下是Apple

的一些常规代码
UIMenuController *theMenu = [UIMenuController sharedMenuController];
CGRect selectionRect = CGRectMake (currentSelection.x, currentSelection.y, SIDE, SIDE);
[theMenu setTargetRect:selectionRect inView:self];
[theMenu setMenuVisible:YES animated:YES];