vote up 0 vote down star

Hi All..

In my iPhone application i want to allow a user to download a file.(video file) From a UIWebview i have linked download button to the video file.

Didnt worked !

Any ideas ?

Please help !

flag

0% accept rate
1  
As always, showing your code is very helpful. As is being more specific about the way in which it failed than "didn't work." (In what format is your video encoded?) – Sixten Otto Oct 27 at 5:59
I think there is a bug in your code, or you are missing some relevant methods. – mahboudz Oct 27 at 9:25

1 Answer

vote up 0 vote down

AFAIK there is not way of downloading a file from WebKit component the same way it's done on the Desktop. If you want to do something like this you should interface with webView by using something like:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

so that you can download the file properly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.