2011-03-09 111 views
0
-(Void) searchBarSearchButtonClicked: (UISearchBar *) activeSearchBar { 
    NSString * query = [searchBar.text stringByReplacingOccurrencesOfString: @ "" withString: @ "+"]; 
    NSURL * url = [NSURL URLWithString: [NSString stringWithFormat: @ "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]; 
} 

我不會說英文,並依靠翻譯。 由於語言問題,這可能是鍵盤問題,還是編碼問題?「WebKitErrorDomain錯誤101」想知道原因

錯誤的原因如下。 如果用韓文書寫,會發生錯誤。 但如果用英文寫作,則不會發生錯誤。

回答

0

這裏是list of WebKit errors。具體而言,101是WebKitErrorCannotShowURL,描述爲「表示更改位置失敗」。