Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebKitErrorDomain error 101

The following code produces and error of:

WebKitErrorDomain error 101 

code:

-(Void) searchBarSearchButtonClicked: (UISearchBar *) activeSearchBar { 
    NSString * query = [searchBar.text stringByReplacingOccurrencesOfString: @ "" withString: @ "+"]; 
    NSURL * url = [NSURL URLWithString: [NSString stringWithFormat: @ "http://http://www.google.com/search?q =%, query]]; 
    NSURLRequest * requestObj = [NSURLRequest requestWithURL: url]; 
    [Home loadRequest: requestObj]; 
} 

-(Void) loadView { 
     [Super loadView]; 
     CGRect bounds = [[UIScreen mainScreen] applicationFrame];   
     searchBar = [[UISearchBar alloc] initWithFrame: CGRectMake (0.0, 0.0, bounds.size.width, 48.0)]; 
     searchBar.delegate = self; 
     [Self.view addSubview: searchBar];
}

I don't speak english and rely on a translator. Because of the language issue could this be a keyboard problem, or an encoding problem?

like image 386
Nam Young-jun Avatar asked Mar 04 '11 14:03

Nam Young-jun


1 Answers

Do not add whitespace in your string url.

like image 76
Nupur Sharma Avatar answered Sep 19 '22 12:09

Nupur Sharma