菜鸟教程小白 发表于 2022-12-12 14:28:59

ios - 来自 RTF 的 NSAttributedString 仅适用于 iOS 8,不适用于 iOS 7


                                            <p><p>我正在尝试使用以下代码在 UITextView 中加载 RTF 文件:</p>

<pre><code>NSURL * filePath = [ URLForResource:_fileName withExtension:@&#34;rtf&#34;];

NSAttributedString *stringWithRTFAttributes = [ initWithFileURL:filePath options:@{NSDocumentTypeDocumentAttribute:NSRTFTextDocumentType} documentAttributes:nil error:nil];
myTextView.attributedText = stringWithRTFAttributes;
</code></pre>

<p>在 iOS 8 上它可以完美运行,但在 iOS 7 上它不起作用,它只显示没有属性的文本。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我解决了将 RTF 文件保存为 HTML(使用 TextEdit)并将代码更改为</p>

<pre><code>NSURL * filePath = [ URLForResource:_fileName withExtension:@&#34;html&#34;];

NSAttributedString *stringWithHTMLAttributes = [ initWithFileURL:filePath options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType} documentAttributes:nil error:nil];
myTextView.attributedText = stringWithHTMLAttributes;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 来自 RTF 的 NSAttributedString 仅适用于 iOS 8,不适用于 iOS 7,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28842009/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28842009/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 来自 RTF 的 NSAttributedString 仅适用于 iOS 8,不适用于 iOS 7