Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add http:// to NSURL if it's not there

I am using web view in my app, getting a URL from a text field. It works if the string starts with "http://". I am trying to modify the code so that it can also handle the situations where users don't enter "http://" or "https://"

How to check if the URL doesn't have "http://" in it ? How to modify the URL to add "http://" in it ?

NSString *URLString = textField.text;
NSURL *URL = [NSURL URLWithString:URLString];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
[self.webView loadRequest:request];
like image 747
Nilesh M. Avatar asked Aug 07 '15 17:08

Nilesh M.


Video Answer


3 Answers

Let me update answer to Swift 4 and WKWebKit

        var urlString = "www.apple.com"

    if urlString.hasPrefix("https://") || urlString.hasPrefix("http://"){
        let myURL = URL(string: urlString)
        let myRequest = URLRequest(url: myURL!)
        webView.load(myRequest)
    }else {
        let correctedURL = "http://\(urlString)"
        let myURL = URL(string: correctedURL)
        let myRequest = URLRequest(url: myURL!)
        webView.load(myRequest)
    }
like image 62
Lukasz D Avatar answered Oct 24 '22 06:10

Lukasz D


NSString *urlString = @"google.com";
NSURL *webpageUrl;

if ([urlString hasPrefix:@"http://"] || [urlString hasPrefix:@"https://"]) {
    webpageUrl = [NSURL URLWithString:urlString];
} else {
    webpageUrl = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@", urlString]];
}

NSURLRequest *urlRequest = [NSURLRequest requestWithURL:webpageUrl];
[self.myWebView loadRequest:urlRequest];
like image 39
emotality Avatar answered Oct 24 '22 04:10

emotality


Try This:

    NSString *URL = @"apple.com" ;
    NSURL *newURL ;

    if ([URL hasPrefix:@"http://"] || [URL hasPrefix:@"https://"]) {
        newURL = [NSURL URLWithString:URL] ;
    }
    else{
        newURL = [NSURL URLWithString:[NSString 
        stringWithFormat:@"http://%@",URL]] ;
    }
    NSLog(@"New URL : %@",newURL) ;
like image 23
Nick Avatar answered Oct 24 '22 06:10

Nick