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

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

        //创建AFNetworking的请求操作

    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://lib.wap.zol.com.cn/ipj/docList.php?class_id=%ld&page=%ld&vs=and380&retina=1", selfId, page + 1]]]];
    
        //设置AFNetworking返回的数据 自动进行json解析
    operation.responseSerializer = [AFJSONResponseSerializer serializer];
    
    [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
        [_netDataDelegate dataRead:responseObject];
        
        
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        
        NSLog(@"%@", error);
    }];
        //开启数据请求
    [operation start];

 

转载于:https://www.cnblogs.com/tian-sun/p/4218969.html

你可能感兴趣的文章
nagios监控iostat
查看>>
为什么要写案例?
查看>>
学 Win32 汇编[3]: 控制台下的几种输出方式
查看>>
我的友情链接
查看>>
华为交换技术实例(1)
查看>>
centos7 firewall防火墙命令
查看>>
android 百度地图api 无法定位 的一种可能性
查看>>
RBTree
查看>>
ACL和前缀列表的比对
查看>>
亲身经历:远离培训机构才能做好运维
查看>>
深入理解Android:Telephony原理剖析与最佳实践 发布
查看>>
写给iOS小白的MVVM教程(序)
查看>>
Hello2012,沉睡海洋博客新年展望
查看>>
linux内核启动内核解压过程分析
查看>>
Java的HashMap和HashTable
查看>>
Linux 版块官方系统下载
查看>>
MYSQL-命令:mysqlhotcopy
查看>>
SHELL-清空httpdlog
查看>>
3560的Qos配置实例
查看>>
Exchange 2013 功能部署系列四 升级CU1关键更新
查看>>