10

我正在尝试使用 NSTextContainer 的 excludePaths 排除 UITextView 中的正方形,如下所示:

NSTextStorage* textStorage = [[NSTextStorage alloc] initWithAttributedString:attributedString];
NSLayoutManager *layoutManager = [NSLayoutManager new];
[textStorage addLayoutManager:layoutManager];

NSTextContainer *textContainer = [[NSTextContainer alloc] initWithSize:self.bounds.size];

UIBezierPath *rectanglePath = [UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 250, 250)];
textContainer.exclusionPaths = @[rectanglePath];

[layoutManager addTextContainer:textContainer];

self.textView = [[UITextView alloc] initWithFrame:self.bounds textContainer:textContainer];
self.textView.editable = NO;
self.textView.scrollEnabled = NO;
[self addSubview:self.textView];

这在 iOS 7.0 中运行良好:

使用 iOS 7.0

然而,在 iOS 7.1 中,这将导致lineFragmentRectForProposedRect:atIndex:writingDirection:remainingRect:NSTextContainer 某处出现无限循环,占用 99% 的 CPU 并疯狂地泄漏内存。该应用程序完全没有响应,最终由于内存使用而终止。显然这是 iOS 7.1 中的一个错误。

当我将排除矩形的 x 原点仅更改一个点(原点为 {1,0})时,它可以工作,但看起来很糟糕:

使用 iOS 7.1 并向右一点

该错误似乎仅在第一行的第一个字符受排除矩形影响时才会发生。当我将排除矩形更改为 {0,30} 时,它也可以工作:

iOS 7.1 和 0,30

但显然这不是我想要的。有谁知道我可以如何解决这个错误?

4

2 回答 2

3

我有同样的问题,要解决这个问题,我放置了:

mytextView.exclusionPaths = @[rectanglePath] 

进入layoutSubview方法。我希望这会对某人有所帮助

于 2015-01-09T15:08:26.290 回答
0

实际上,我在 iOS 7 和属性文本中遇到了同样的事情。

我必须完全删除属性文本,使 UITextView 可选,以便我可以更改文本颜色和字体,然后它才起作用。

叹。

只是提到这一点,以防将来有人偶然发现这一点。

于 2015-02-20T12:10:26.147 回答