博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS_GET_网络请求
阅读量:5972 次
发布时间:2019-06-19

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

同步的 get 请求

#pragma mark - 同步的 get 请求- (IBAction)GETSynButtonDidClicked:(UIButton *)sender {    // 1、网址里面必须写 http://    NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";    // 2、假设网址有汉字须要转换(没有汉字也能够写)    urlString = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];    // 3、依据字符串创建 url(统一资源定位符)    NSURL *url = [NSURL URLWithString:urlString];    // 4、依据 url 创建 request 请求类的对象    NSURLRequest *request = [NSURLRequest requestWithURL:url];    // 5、開始去请求网络、数据(同步) 返回data    NSData *receiveData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];    // 6、系统自带json解析    NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:receiveData options:(NSJSONReadingMutableContainers) error:nil];    NSArray *array = dict[@"news"];    self.newsArray = [NSMutableArray array];    for (NSDictionary *smallDict in array) {        NewsModal *modal = [[NewsModal alloc] init];        [modal setValuesForKeysWithDictionary:smallDict];        [self.newsArray addObject:modal];    }    for (NewsModal *modal in self.newsArray) {        NSLog(@"%@", modal.title);    }}

异步的 get 请求

#pragma mark - 异步的 get 请求- (IBAction)GETAsyButtonDidClicked:(UIButton *)sender {    // 1、拼接 urlString,网址里面必须写 http://    NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?

date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213"

; // 2、依据字符串创建 URL(统一资源定位符) NSURL *url = [NSURL URLWithString:urlString]; // 3、依据 url 创建 request 请求类的对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; // 4、開始去请求网络、数据(同步) 返回data [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) { // 5、系统自带json解析 NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:(NSJSONReadingMutableContainers) error:nil]; NSArray *array = dict[@"news"]; self.newsArray = [NSMutableArray array]; for (NSDictionary *smallDict in array) { NewsModal *modal = [[NewsModal alloc] init]; [modal setValuesForKeysWithDictionary:smallDict]; [self.newsArray addObject:modal]; } for (NewsModal *modal in self.newsArray) { NSLog(@"%@", modal.title); } }]; }

转载地址:http://ifbox.baihongyu.com/

你可能感兴趣的文章
通过IP判断登录地址
查看>>
深入浅出JavaScript (五) 详解Document.write()方法
查看>>
Beta冲刺——day6
查看>>
在一个程序中调用另一个程序并且传输数据到选择屏幕执行这个程序
查看>>
代码生成工具Database2Sharp中增加视图的代码生成以及主从表界面生成功能
查看>>
关于在VS2005中编写DLL遇到 C4251 警告的解决办法
查看>>
提高信息安全意识对网络勒索病毒说不
查看>>
maya pyside 多个窗口实例 报错 解决
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
MVC中的三个模块
查看>>
Line: 220 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1
查看>>
oracle 常用命令大汇总
查看>>
mysql 并行复制
查看>>
傲不可长,欲不可纵,乐不可极,志不可满——提高个人修养
查看>>
后台调用gps
查看>>
HTML5标签的语义认知和理解(1)
查看>>
MySQL日志功能详解(2)
查看>>
HP LaserJet 305X 和 339X 系列一体机如何设置手动或自动接收传真?
查看>>
XDCTF成长记录
查看>>