Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a textview and i need to be able to remove the selected text [ i mean i want to delete the text which are highlighted] for that i did as below

Code

(void)textViewDidChangeSelection:(UITextView *)textView {
    NSRange range = textView.selectedRange;
   myTextView.text = [myTextView.text stringByReplacingCharactersInRange:range withString:@""];

}

but it is crashing , how to implement this functionality here

Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFString replaceCharactersInRange:withString:]: Range or index out of bounds'

Pls let me know

share|improve this question
2  
Can you post the crash log? – Jirapong Dec 27 '11 at 5:58
check the -ve sign is not present in your code. It should be like this -(void) textViewDidChangeSelection:(UITextView *)textView – Anil Dec 27 '11 at 6:05
It is not clear.. While highlighting itself, it will give options to copy, cut, etc., Can you please explain why you need this programmatically? – Aadhira Dec 27 '11 at 6:20

2 Answers

up vote 2 down vote accepted

It's working fine on xcode version 3.2.5. Check the delegates of the UITextView are connected to the file Owner in the Interface Builder.

-(void) textViewDidChangeSelection:(UITextView *)textView {

NSRange range = textView.selectedRange;

myTextView.text = [myTextView.text stringByReplacingCharactersInRange:range withString:@""];

}

share|improve this answer
thanks for the answer. – mohitum007 Dec 13 '12 at 10:17

This code is working in my simulator, please check delegates connection(from UITextView to File owner)and (File owner to UITextView) in Interfacebuilder

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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