当前位置:编程学习 > wap >>

iOS简单加载一个网页

.h文件中

 

@property(strong ,nonitomic) UIWebView * webView;

 

.m文件中

 

-(void)viewDidLoad

{

 

    self.webview = [[UIWebView alloc]initWithFormat:CGRectmake(0,0,320,480)];

    

    [self.view addSubview:self.webView];

 

 

    NSUrlRequeast * request = [NSURLRequest requestWithUrl:[NSURL urlWithString:"http://www.baidu.com"]];

 

  //运行一下,百度页面就出来了

 

   [self.webview loadRequest:request];

 

 

 

补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,