gpt4 book ai didi

objective-c - UITextView beginningOfDocument 返回 nil

转载 作者:太空狗 更新时间:2023-10-30 03:49:58 24 4
gpt4 key购买 nike

我必须获取 UITextView 中包含的字符串在屏幕上的位置。为此,我尝试获取相应的 UITextPosition(s)。问题是 UITextView 方法 beginningOfDocument 返回 nil(与 endOfDocuement 相同)。有人可以向我解释为什么吗?我可以使用哪种解决方案。

我的代码是这样的:

- (UITextRange *)getRangeOfString:(NSString *)string inTextView:(UITextView *)tv
{
UITextPosition *beginning = [tv positionFromPosition:tv.beginningOfDocument offset:[tv.text rangeOfString:string].location];
UITextPosition *end = [tv positionFromPosition:beginning offset:[tv.text rangeOfString:string].length];

return ([tv textRangeFromPosition:beginning toPosition:end]);
}

最佳答案

这大约晚了一个月,但请确保您在 Interface Builder 中启用了“selectable”属性。

来源:http://jon-nolen.blogspot.com/2013/10/uitextview-returns-nil-for-uitextinput.html

关于objective-c - UITextView beginningOfDocument 返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20426048/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com