0

リッチ テキスト エディター アプリを作成しています。アプリが起動すると、UIWebView は編集可能なコンテンツ div を含む html ファイルを読み込みます。単語に触れると、UIWebView は、選択した単語の代わりにいくつかの単語を提案するメニューを表示します。このメニューをオフにするにはどうすればよいですか?

それが私が言うことです: http://i.stack.imgur.com/Xu4A9.png

これは私のコードです:

- (void)viewDidLoad
{
    webText=nil;
    NSString *path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
    [self.editor loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
    self.editor.delegate=self;    

    [super viewDidLoad];
}

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
    if (action == @selector(defineSelection:))
    {
        return NO;
    }
    else if (action == @selector(translateSelection:))
    {
        return NO;
    }
    else if (action == @selector(copy:))
    {
        return NO;
    }

    return [super canPerformAction:action withSender:sender];
}
4

1 に答える 1