2012-05-15 36 views

回答

2

最簡單的 - 只是爲了顯示在Web視圖的網頁。 Facebook管理自己以適應您的webView控件的寬度。

// Load facebook data 
NSString *fbUrlAddress = @"http://www.facebook.com/FLORtiles"; // here you put your own group 
//Create a URL object. 
NSURL *fbUrl = [NSURL URLWithString:fbUrlAddress]; 
NSString *webHTMLfb = [NSString stringWithContentsOfURL:fbUrl encoding:NSUTF8StringEncoding error:NULL]; 
//NSLog(@"webHTML of facebook: %@", webHTMLfb); 
//URL Requst Object 
NSURLRequest *fbRequestObj = [NSURLRequest requestWithURL:fbUrl]; 
//Load the request in the UIWebView. 
[fbWebView loadRequest:fbRequestObj];