I am trying to play a video in my iPhone application using the UIWebView component, the video is of format 3gp. If I try to open the url link to the video in the built in "Safari" application on my iPhone the video plays successfully without any problem, but when I try to open the link in the UIWebView i get an error message: "The opperation could not be completed". Why is that happening?
My code:
NSURLRequest *pageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:_urlString]]; [_webView loadRequest:pageRequest];