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.

link|improve this question

0% accept rate
place [UIMenuController sharedMenuController].menuVisible = NO; in - (BOOL) canPerformAction:(SEL)action withSender:(id)sender method. – ravoorinandan Jul 1 '11 at 9:51
15  
increase your accept rate ..... – Vijay Dec 2 '11 at 6:27
4  
you should accept answer that helps you. – HelmiB Feb 21 at 10:16
feedback

8 Answers

Subclass UITextView and overwrite canBecomeFirstResponder:

- (BOOL)canBecomeFirstResponder {
    return NO;
}

Note, that this only applies for non-editable UITextViews! Haven't tested it on editable ones...

link|improve this answer
perfect, thanks :) – Tristan Feb 17 '11 at 22:57
1  
It works. This should be marked as answer. – Matt Chuang Dec 30 '11 at 20:04
Simple. Elegant. Works. Thank you iCoder :) – Stephen Watson Feb 4 at 10:46
feedback

The easiest way to disable pasteboard operations 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|improve this answer
feedback

If you don't need UITextView to scroll, then the simplest solution that doesn't involve sub-classing is to simply disable user interaction for the text view:

textField.userInteractionEnabled = NO;
link|improve this answer
This takes away tapping on links etc. if that is what is in the textview. Should be noted that this is not a good solution for wanting to hide the select/copy/paste, but also keep some level of interaction enabled. – barfoon Feb 9 at 3:47
Well, I would have thought that would be obvious. – Luke Redpath Feb 10 at 19:47
feedback

If you want to disable cut/copy/paste on all UITextView of your application you can use a category with :

@implementation UITextView (DisableCopyPaste)

- (BOOL)canBecomeFirstResponder
{
    return NO;
}

@end

It saves a subclassing... :-)

link|improve this answer
you can also put this only in your /, file where you need this behaviour. – Markus Pfundstein Apr 3 at 10:07
feedback

The easiest way is to create a subclass of UITextView that overrides the canPerformAction:withSender:

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender    
{    
     [UIMenuController sharedMenuController].menuVisible = NO;  //do not display the menu
     [self resignFirstResponder];                      //do not allow the user to selected anything
     return NO;
}
link|improve this answer
feedback

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|improve this answer
feedback

This was the best working solution for me:

UIView *overlay = [[UIView alloc] init];  
[overlay setFrame:CGRectMake(0, 0, myTextView.contentSize.width, myTextView.contentSize.height)];  
[myTextView addSubview:overlay];  
[overlay release];

from: http://stackoverflow.com/a/5704584/1293949

link|improve this answer
feedback

I have done it. On my UITextView I have disabled cut, copy, select, etc. option very easily.

I 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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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