本文介绍了如何从iOS中的UIMenuController中删除默认的UIMenuItem?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从UIMenuController中删除一些默认的UIMenuItem对象,如剪切,复制等。
I want to remove some default UIMenuItem objects like "Cut", "Copy", etc, from the UIMenuController.
如何做到这一点?
谢谢。
推荐答案
对呈现菜单的视图进行子类化(例如 UIWebView
, UITextView
)并覆盖 -canPerformAction:withSender:
返回您不希望出现的菜单项否
。
Subclass the view that's presenting the menu (eg. UIWebView
, UITextView
) and override -canPerformAction:withSender:
to return NO
for the menu items you don't want to appear.
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
if (action == @selector(copy:)) {
return NO;
}
else {
return [super canPerformAction:action withSender:sender];
}
}
这篇关于如何从iOS中的UIMenuController中删除默认的UIMenuItem?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!