views:

72

answers:

1

I am trying to get the last editing point of a UITextView box.

I have tried getting the value textView.selectedRange.location,but it always comes out as 2147483647 (which is -1).

When should I read this value

+2  A: 

You could save the selectedRange in the -textViewShouldEndEditing: method of your delegate, and then use this saved value.

KennyTM
Found my mistake. Need to do it just before resignFirstResponder
John Smith