4

我试图在 UITextView 中绘制一个透明的 CALayer,以便在搜索中突出显示匹配的文本。

我已经找到了正确的方法,但仍然没有找到正确的坐标。我需要找到文本容器的来源。现在,我得到了 textView 的原点,并以此偏移了图层的原点:

NSRange match = [[[self textView]text]rangeOfString:@"predict the future"];
NSRange glyphRange = [manager glyphRangeForCharacterRange:match actualCharacterRange:NULL];

CGRect textRect = [manager boundingRectForGlyphRange:glyphRange inTextContainer:[[self textView]textContainer]];

CGPoint textViewOrigin = self.textView.frame.origin;
textRect.origin.x += (textViewOrigin.x / 2);
textRect.origin.y += (textViewOrigin.y / 2);


CALayer* roundRect = [CALayer layer];
[roundRect setFrame:textRect];
[roundRect setBounds:textRect];

[roundRect setCornerRadius:5.0f];
[roundRect setBackgroundColor:[[UIColor blueColor]CGColor]];
[roundRect setOpacity:0.2f];
[roundRect setBorderColor:[[UIColor blackColor]CGColor]];
[roundRect setBorderWidth:3.0f];
[roundRect setShadowColor:[[UIColor blackColor]CGColor]];
[roundRect setShadowOffset:CGSizeMake(20.0f, 20.0f)];
[roundRect setShadowOpacity:1.0f];
[roundRect setShadowRadius:10.0f];

[[[self textView]layer]addSublayer:roundRect];

如果我移动文本字段,或者我不将偏移量除以 2,我会得到以下结果: 图层框关闭

我想知道我是否走在正确的轨道上,如果是的话,如何找到 NSTextContainer 对象的来源。

4

2 回答 2

8

要正确定位图层,您只需添加self.textView.textContainerInset.toptextRect.origin.y,而不是文本视图的原点。

但正如我在评论中所说,如果你的比赛跨越两条线,它就不会很好地工作。您可能希望设置匹配范围的背景颜色以突出显示它,(使用attributedText属性),但是您不能添加圆角或阴影。

于 2013-12-16T00:05:23.553 回答
1

[textView textContainerInset]

使用文本视图的原点将不起作用,因为插图可能会在其他地方更改。例如,如果父视图控制器的 automaticAdjustsScrollViewInsets 属性为 YES,或者正在进行某些自定义文本容器布局。

UIEdgeInsets textContainerInset = [[self textView]textContainerInset];
textRect.origin.x += textContainerInset.left;
textRect.origin.y += textContainerInset.top;

这是使几何图形正确的解决方案,但如果文本跨越两行则不行。

于 2013-12-16T00:19:23.970 回答