0

I have my app with diff format files like .jpg, .png, .pdf, .mkv... and these are coming from aws as url...i want to open each url with native viewer.

Please help.

SoumiMaiti
  • 91
  • 10

1 Answers1

0

You can show your image, pdf in an UIWebview like this

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, 200, 200)];

NSURL *yourFileURL = [NSURL URLWithString:@"Your image or pdf path"];
NSURLRequest *request = [NSURLRequest requestWithURL:yourFileURL];
[webView loadRequest:request];

[self.view addSubview:webView];
BHASKAR
  • 1,201
  • 1
  • 9
  • 20