我可以在UITextView中以编程方式选择文本吗?

时间:2010-04-14 02:04:43

标签: iphone select text uitextview highlight

我想在UITextView上选择文本,类似于我们点击时看到的默认“选择”和“全选”弹出选项。我希望用户能够从我的自定义菜单中执行此操作。我玩过selectedRange,但似乎没有做到这一点。有什么想法吗?

由于

2 个答案:

答案 0 :(得分:5)

selectedRange属性应该执行此操作,但正如documentation中所述,仅适用于iPhone OS 3.0及更高版本。在2.2及更早版本中,selectedRange属性实际上是一个插入点。

答案 1 :(得分:4)

如接受的答案所述,selectedRange属性是您需要的,但请注意,如果您使用-textViewDidBeginEditing:委托方法,则可能需要推迟一个运行循环才能获胜超出用户生成的“插入”操作:

- (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];
    }
}