Nirav
Nirav

Reputation: 315

NSURLRequest Know the URL Type if it is file or link

I have used a UIWebView in my app and want to download the file. I have referred to this SO question

I wanted to know if there is a way to know if the NSURLRequest is a normal link or is it a link to download a file.

Regards, Nirav

Upvotes: 0

Views: 71

Answers (1)

markturnip
markturnip

Reputation: 402

NSURL has a method 'isFileURL'

[request.URL isFileURL]

Upvotes: 1

Related Questions