在app里使用webview
先建一个view base app. 再打开viewcontroller.xib ,放上一个webview,如果不需要status bar就隐掉,在view里设置。
在viewcontroller.h里加上
IBOutlet UIWebView *webView;
@property (nonatomic, retain) UIWebView *webView;
@synthesize webView;
- (void)viewDidLoad {NSString *urlAddress = @"http://www.google.com";//Create a URL object.NSURL *url = [NSURL URLWithString:urlAddress];//URL Requst ObjectNSURLRequest *requestObj = [NSURLRequest requestWithURL:url];//Load the request in the UIWebView.[webView loadRequest:requestObj];}