菜鸟教程小白 发表于 2022-12-13 02:26:00

ios - 如何将 NSTextView 的格式化内容转换为字符串


                                            <p><p>我需要将 NSTextView 的内容从 Mac 应用程序传输到 iOS 应用程序。我使用 XML 作为传输文件格式。 </p>

<p>所以我需要将 NSTextView 的内容(文本、字体、颜色等)保存为字符串。有什么办法吗? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一种方法是归档 NSAttributedString 值。概述直接输入答案的示例代码:</p>

<pre><code>NSTextView *myTextView;
NSString *myFilename;
...
[NSKeyedarchiver archiveRootObject:myTextStorage.textStorage
                            toFile:myFilename];
</code></pre>

<p>回读:</p>

<pre><code>myTextView.textStorage.attributedString = ;
</code></pre>

<p>这就是创建和读回文件所需的全部内容。有一些匹配的方法可以创建 NSData 而不是文件,您可以将 NSData 转换为 NSString 或将一个插入 NSDictionary 并将其序列化为 plist (XML) 等。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将 NSTextView 的格式化内容转换为字符串,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16237376/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16237376/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将 NSTextView 的格式化内容转换为字符串