Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
See related ticket: stackoverflow.com/questions/419544/… – Conner Jul 9 '12 at 1:25

1 Answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.