I created C# window program. I want to display RTF contents made by Window Program in ipad app .
In addition, I want to display contents made by ipad in RTF textbox of window program ,too.
Is this possible? Please advice to me. thanks!
I created C# window program. I want to display RTF contents made by Window Program in ipad app .
In addition, I want to display contents made by ipad in RTF textbox of window program ,too.
Is this possible? Please advice to me. thanks!
You can use a UIWebview
to display `RTF files
NSURL *url = <URL FOR YOUR SAVED RTF DOCUMENT IN THE TMP/CACHES FOLDER>;
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webview loadRequest:request];
where webview
is an iVar that is a UIWebView