2011-12-28 64 views
0

我是新來的Objective-C。的UIWebView不能重定向

我已經被重定向字符串到web視圖的應用程序。我希望該webView應該加載維基百科,並應該搜索該字符串中的內容。

我寫這樣的...

NSString *urlString=[NSString stringWithFormat:@"http://en.wikipedia.org/wiki/Main_Page/search=%@",str1]; 
//[urlString stringBy]; 
NSLog(@"url %@",urlString); 
NSURL *url=[NSURL URLWithString:urlString]; 
NSURLRequest *request=[[NSURLRequest alloc]initWithURL:url]; 
[webView loadRequest:request]; 
+0

好像與出路問題。 – rishi 2011-12-28 17:47:20

+0

您是否已將webview添加到屏幕上顯示的視圖? – Andy 2011-12-28 18:17:41

+0

是的,我已經添加webView的... – srbh 2011-12-29 06:10:42

回答

-1
NSString *urlAddress = @」http://www.google.com」; 

// Create a URL object. 
NSURL *url = [NSURL URLWithString:urlAddress]; 

// URL Request Object 
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; 

// Load the request in the UIWebView. 
[webView loadRequest:requestObj]; 

好運

+0

它是如何涉及到一個問題嗎? – iHunter 2011-12-28 20:06:02

+0

請在代碼標籤 - >'之間編寫代碼。這些字符應該位於鍵盤上'1'鍵的左側。謝謝並歡迎來到SO :) '代碼都here' – 2011-12-28 20:12:14

+0

感謝iHunter但實際上我想我的字符串直接重定向到維基百科和維基百科將搜索字符串的內容.... – srbh 2011-12-29 06:08:38