在本文章中笔者将要为大家介绍ios中任何利用NSRULConnection从网络上下载数据,如何解析下来的JSON 格式的数据,以及如何显示数据和图片的异步下载
有关的知识点
1.NSRULConnection的异步下载以及封装
2.JSON格式和JSON格式的解析
3.数据显示以及SDWebImage异步显示图片
1.网络下载基础知识介绍
什么是网络应用?
网络应用的程序结构
常见的网络接口形式
常见的数据格式
界面开发的一般流程
2.NSRULConnection的使用
NSString同步下载数据
1 ViewController1 *vc1 = [[ViewController1 alloc] init]; 2 UINavigationController *nvc1 = [[UINavigationController alloc] initWithRootViewController:vc1]; 3 4 ViewController2 *vc2 = [[ViewController2 alloc] init]; 5 UINavigationController *nvc2 = [[UINavigationController alloc] initWithRootViewController:vc2]; 6 7 8 ViewController3 *vc3 = [[ViewController3 alloc] init]; 9 UINavigationController *nvc3 = [[UINavigationController alloc] initWithRootViewController:vc3];
3.JSON格式声明和格式化工具
4.一个完整页面的实现(包含model的创建,SDWebImage的使用)
效果图