2016-09-22 8 views
0

Когда пользователь нажимает проход в textView, я хочу сменить курсор на linebreak, но когда я меняю selectionRange, всегда сбой. Я знаю причину, но я должен изменить selectedRange в func: textViewDidChangeSelection:(UITextView*)textViewUITextView change selectRange всегда сбой

Как я могу изменить выбранный диапазон?

здесь код

-(void)textViewDidChangeSelection:(UITextView *)textView 

// paragLocations: it contain all "\n" locations 
NSArray* paragLocations = [self ParagraphLocationsWithText:textView Pattern:translatePragraphLinebreak]; 

//  location :According to user selection,The nearest "\n" location 
NSUInteger nearestLocation = [self ClickParagraphEndBreakLoctionWithSelectLocation:textView.selectedRange.location withParagLocations:paragLocations]; 
//Then 
//1. here I change the textView.selectedRange 
textView.selectedRange = NSMakeRange(nearestLocation, 0); 
//2. here I change the cursorPosition 
CGFloat cursorPosition = [self caretRectForPosition:textView.selectedTextRange.start].origin.y; 
[textView setContentOffset:CGPointMake(0, cursorPosition) animated:YES]; 
// but In step 1 ,It changed textView.selectedRange,So this func will do it again,and then again,until the nearestLocation became the paragLocations.lastObject. 
/* 
     so the question is how to break this Infinite loop ? 
     should I change selectedRange In this func? 
     I want to changed the selectedRange base on User select In textview 
*/ 

жаль мой бедный английский.

+0

это «изменение ** выборRange ** всегда сбой» или выбраноРежим ..? – vaibhav

+0

Я редактирую вопрос, чтобы четко объяснить –

ответ

0

Вы можете попробовать следующий код, он работает для меня хорошо.

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

     UITextRange *selectRange = [textView selectedTextRange]; 
     NSString *selectedText = [textView textInRange:selectRange]; 
    } 
+0

Я просто хочу изменить selectRange в func, а не в этом –

 Смежные вопросы

  • Нет связанных вопросов^_^