iOS Objective C: Display RTF document

前端 未结 2 1091
栀梦
栀梦 2021-02-20 12:21

I want to show a RTF document in a view. This document will be developed in Microsoft Word and will contains images.

What is the best way to do this using standard rout

2条回答
  •  一个人的身影
    2021-02-20 12:59

    UIWebView opens .rtf documents. Try something like

    NSURL *rtfUrl = [[NSBundle mainBundle] URLForResource:@"MyFileName" withExtension:@"rtf"];
    NSURLRequest *request = [NSURLRequest requestWithURL:rtfUrl];
    [_webview loadRequest:request];
    

    See the documentation for UIWebView file types.

提交回复
热议问题