码迷,mamicode.com
首页 > 移动开发 > 详细

iOS之 网络数据下载及JSON解析

时间:2015-04-01 19:16:06      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

网络数据下载及JSON解析

简介

  在本文章中笔者将要为大家介绍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的使用)

  效果图技术分享

 

iOS之 网络数据下载及JSON解析

标签:

原文地址:http://www.cnblogs.com/dahongliang/p/4384509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!