开发者

Can I Programmatically Select Text in UITextView?

开发者 https://www.devze.com 2022-12-27 00:19 出处:网络
I want to select Text on UITextView, similar to the default \"Sele开发者_如何学运维ct\" and \"Select All\" pop options we see when we tap.I want to the user the ability to do that from my custom menu.

I want to select Text on UITextView, similar to the default "Sele开发者_如何学运维ct" and "Select All" pop options we see when we tap. I want to the user the ability to do that from my custom menu. I played with selectedRange but that doesnt seem to do the trick. Any ideas?

Thanks


The selectedRange property should do it but, as mentioned in the documentation, only in iPhone OS 3.0 and later. In 2.2 and earlier, the selectedRange property is actually an insertion point.


As mentioned in the accepted answer, the selectedRange property is the thing you need, but beware that if you are using the -textViewDidBeginEditing: delegate method you might need to defer one run loop in order to win out over the user generated "insertion" action:

- (void)textViewDidBeginEditing:(UITextView *)textView
{
    // Look for the default message and highlight it if present
    NSRange defaultMsgRange = [textView.text rangeOfString:NSLocalizedString(@"TEXTFIELD_DEFAULT_MESSAGE", nil) options:NSAnchoredSearch];

    BOOL isDefaultMsg = !(defaultMsgRange.location == NSNotFound && defaultMsgRange.length == 0);
    if (isDefaultMsg) {

        // Need to delay this by one run loop otherwise the insertion wins
        [self performBlock:^(id sender) {  // (BlocksKit - use GCD otherwise)

            textView.selectedRange = defaultMsgRange;

        } afterDelay:0.0];
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号