gpt4 book ai didi

ios - 在 NSTextContainer 中获取文本

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:17:13 26 4
gpt4 key购买 nike

我有一个包含 NSString 内容的段落的 NSOrderedSet。遍历所有,创建一个大字符串并赋予 NSTextStorage。但是所有的段落都丢失了。

下面的代码允许我计算页面数并在页面中显示内容。但我想将段落中的内容分开,并知道用户何时点击特定段落。

如何使用 NSTextStorage 将内容显示为一组较小的文本 block 而不是单个大字符串?注意:我使用 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];

谢谢。

最佳答案

我找不到使用 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];
}

关于ios - 在 NSTextContainer 中获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26183669/

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