博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UI4_UIWebView
阅读量:5104 次
发布时间:2019-06-13

本文共 827 字,大约阅读时间需要 2 分钟。

////  ViewController.m//  UI4_UIWebView////  Created by zhangxueming on 15/7/7.//  Copyright (c) 2015年 zhangxueming. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.    UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.bounds];    NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];    //创建网络请求    NSURLRequest *request = [NSURLRequest requestWithURL:url];    //加载webView    [webView loadRequest:request];    [self.view addSubview:webView];}- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}@end

 

转载于:https://www.cnblogs.com/0515offer/p/4638832.html

你可能感兴趣的文章
那些黑刘翔的人,你们的良心被狗吃了
查看>>
TreeMap和TreeSet在排序时如何比较元素?Collections工具类中的sort()方法如何比较元素?...
查看>>
Redis系列--内存淘汰机制(含单机版内存优化建议)
查看>>
最小二乘法
查看>>
iptables端口转发
查看>>
金融三问
查看>>
HTML5新API记录
查看>>
Android 8 AudioPolicy 分析
查看>>
Java Web开发后端常用技术汇总
查看>>
How to use jQuery countdown plugin
查看>>
富文本常用封装(NSAttributedString浅析)
查看>>
c++ STL
查看>>
json数据在前端(javascript)和后端(php)转换
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Groovy中那些神奇注解之ToString
查看>>
宇宙第一开发工具:vs2019 开发Python
查看>>
Tomcat Https配置
查看>>
检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法
查看>>
关于mybatis中基本类型条件判断问题
查看>>
RDD之二:原理
查看>>