vote up 0 vote down star

I used UITextView in that copy ,cut,select ,select All functionality shows by default when i touches continuously.but in my project the text view property is only read Only.I not require this functionality. Please tell me how to disable this function.

flag

0% accept rate

3 Answers

vote up 3 vote down

The easiest way is to create a subclass of UITextView that overrides the canPerformAction:withSender: method to return NO for actions that you don't want to allow:

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
    if (action == @selector(paste:)
        return NO;
    return [super canPerformAction:action withSender:sender];
}

Also see UIResponder

link|flag
vote up 0 vote down

hi buddies,

i have done it.on my UITextView i have disabled cut,copy,select etc option very easily.

what i have done ,i just placed a UIView at the same place where i had placed the UITextView,but on self.view. and added a touchDelegate method as follows:

  • (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *scrollTouch=[touches anyObject]; if(scrollTouch.view.tag==1) { NSLog(@"viewTouched"); if(scrollTouch.tapCount==1) [textView1 becomeFirstResponder]; else if(scrollTouch.tapCount==2) { NSLog(@"double touch"); return; }

    } }

and it worked for me.thank you.

link|flag
vote up 0 vote down

This is the easiest way to disable the entire Select/Copy/Paste Menu in a UITextView

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender {

    [UIMenuController sharedMenuController].menuVisible = NO;
    return NO;

}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.