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.
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.
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];