I have a split view controller in which the detail view has a button that is supposed to open a powerpoint presentation. How would I get about implementing that?
I have heard that a UiWebView woud implement that as follows:
-[UIWebView loadData:MIMEType:textEncodingName:baseURL:]
[webView loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:filePath]]
However does that mean I have to add a new view and put the UiWebView on it? Is there an easier way?
Thanks