菜鸟教程小白 发表于 2022-12-12 19:02:40

ios - NSTextStorage 的备用后备存储


                                            <p><p>每个示例都显示一个 NSMutableAttributedString 作为“后备存储”,用于保存与查看/编辑文本相关的文本和属性。我如何使用替代品,例如 std::string 或者数据库中的内容。作为一个测试,我创建了一个子类并对其进行硬编码,以便在我覆盖所需的方法时返回默认值。但是,当我在 iPhone 5 设备上运行它时,它只会显示黑屏,直到我按下 Home 按钮。系统不断调用attributesAtIndex:location:effectiveRange:range:,CPU使用率上升到100%,App从不做任何事情。它确实调用了一次 string: 方法,然后只是继续调用 attributesAtIndex:location:effectiveRange:range</p>

<p>例子:</p>

<pre><code>@implementation MyTextStorage
{
}

- (id)init
{
    self = ;

    if (self)
    {
    }

    return self;
}


#pragma mark - Reading Text

- (NSString *)string
{
    return @&#34;Static&#34;;
}

- (NSDictionary *)attributesAtIndex:(NSUInteger)location effectiveRange:(NSRangePointer)range
{
    return@{NSFontAttributeName: } ;
}

#pragma mark - Text Editing

- (void)replaceCharactersInRange:(NSRange)range withString:(NSString *)str
{
    // Empty - Don&#39;t allow editing
}

- (void)setAttributes:(NSDictionary *)attrs range:(NSRange)range
{
    // Empty - Don&#39;t allow editing
}

- (void)processEditing
{
    ;
}




@end
</code></pre>

<p>这是它的设置方式:</p>

<pre><code>    // property
    self.textStorage = ;

    // Create layout manager, and attach text storage to layout manager.
    NSLayoutManager* layoutManager = [ init];
    ;

    // Create text container and attach to layout manager
    CGSize size = self.view.bounds.size;
    size.height = size.height/2;

    NSTextContainer* textContainer = [ initWithSize: size];
    ;

    // Create text view, given text container.
    CGRect frame1 = CGRectMake(0, 20, size.width, size.height);
    UITextView *tv1 = [ initWithFrame:frame1 textContainer: textContainer];
    ;
</code></pre>

<p>我理解 NSTextStorage 是一个 Class Cluster,这似乎意味着它是一个抽象类工厂。我真的不明白为什么我不能使用另一个“后备商店”。我的计划是使用 std::string (因为我的数据来自哪里),然后返回一个常量属性样式(如上面的代码)。我一直在阅读有关 NSTextStorage、NSLayoutManager、NSTextContainer 和 NSTextView 的所有内容,包括 mac OS X 文档(即使我在 iOS 上这样做)。谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>NSRangePointer</code> 基本上是一个指向 <code>NSRange</code> 的指针。
如果它不为空,则需要在退出方法之前设置它。像这样:</p>

<pre><code>- (NSDictionary *)attributesAtIndex:(NSUInteger)location effectiveRange:(NSRangePointer)range {
    if(range != NULL){
      range-&gt;location = 0;
      range-&gt;length = self.string.length;
    }
    return@{NSFontAttributeName: } ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSTextStorage 的备用后备存储,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21868382/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21868382/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSTextStorage 的备用后备存储