如何禁用像选择弹出菜单中的项目,全选,推荐...,定义(在UIWebView的)?(How to d

2019-08-02 08:21发布

如何禁用像选择弹出菜单中的项目, 全选推荐..., 定义 (在UIWebView )?

我发现上的帮助下面的信息,但不知道如何使用它:

对编辑菜单命令,这是共享UIApplication对象。 根据上下文,可以查询发送者的信息,以帮助您确定命令是否应该启用。

Answer 1:

调酒下面的方法:

#import "NSObject+myCanPerformAction.h"

@implementation NSObject (myCanPerformAction)

- (BOOL)myCanPerformAction:(SEL)action withSender:(id)sender {
    if (action == @selector(copy:)) {
        return [self myCanPerformAction:action withSender:sender]; // not a recursion
    }
    if (action == @selector(paste:)) {
        return [self myCanPerformAction:action withSender:sender]; // not a recursion
    }
    return NO;
}

@end

混写:

[[UIWebDocumentView class] jr_swizzleMethod:@selector(canPerformAction:withSender:) withMethod:@selector(myCanPerformAction:withSender:) error:nil];


文章来源: How to disable popup menu items like Select, Select All, Suggest…, Define (on UIWebView)?