Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了 C# 窗口程序。我想在 ipad app 中显示 Window Program 制作的 RTF 内容。
另外,我也想在窗口程序的RTF文本框中显示ipad制作的内容。
这可能吗?请给我建议。谢谢!
您可以使用 aUIWebview来显示 `RTF 文件
UIWebview
NSURL *url = <URL FOR YOUR SAVED RTF DOCUMENT IN THE TMP/CACHES FOLDER>; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webview loadRequest:request];
webviewiVar在哪里UIWebView
webview
UIWebView