在NSTextContainer中获取文本

时间:2014-10-03 17:19:12

标签: ios textkit nslayoutmanager nstextstorage nstextcontainer

我有一个带有NSString内容的段落的NSOrderedSet。循环遍历所有,创建一个大字符串并给出NSTextStorage。但随之而来的是所有段落都丢失了。

以下代码允许我对页面进行计数并在页面中显示内容。但是我希望将段落中的内容分开并知道用户何时点击特定段落。

如何使用NSTextStorage将内容显示为不是一个大字符串而是显示为较小文本块的集合?注意:我使用UIPageViewController来显示内容,因此我还需要知道每页的段落数。

NSString *content = @"";
for (TWParagraph *paragraph in self.bookParagraphs)
{
    TWTextBlock *textBlock = paragraph.hasTextBlock.firstObject;
    content = [content stringByAppendingString:textBlock.textContent];
}

NSTextStorage *localTextStorage = [[NSTextStorage alloc] initWithString:content];
NSLayoutManager *localLayoutManager = [NSLayoutManager new];
NSTextContainer *localTextContainer = [self createTextContainer];
localLayoutManager.delegate = self;
[localTextStorage addLayoutManager:localLayoutManager];
[localLayoutManager addTextContainer:localTextContainer];

[localLayoutManager ensureLayoutForTextContainer:localTextContainer];


self.numberOfPages = [[localLayoutManager textContainers] count];

感谢。

1 个答案:

答案 0 :(得分:1)

我找不到使用NSTextContainer的解决方案。最后,我通过将文本拆分为UITableView中的单元格来解决它。

每个单元格的高度是根据它应包含的文本量计算的。

- (CGRect) calculateRectSize: (TWTextBlock *) textBlock forAttributes:(NSDictionary *) customAttributes {
    CGSize constraintSize = CGSizeMake(self.tableViewRect.size.width - 10.0f, 400);
    return [[textBlock textContent] boundingRectWithSize:constraintSize options:NSStringDrawingUsesLineFragmentOrigin attributes:customAttributes context:nil];
}