博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS访问webserver接口
阅读量:6126 次
发布时间:2019-06-21

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

   

接口调用参数只能是字符串格式,返回格式支持3种(字符串,数组,DataSet)

需要引用第三方库,包含(DataSet,PlatServinceDataParser,WebserviceCommon,WebServiceHelper,XMLArrayParser,XMLDataSetParser,XMLResultParser)

程序中引用2个即可

#import "WebServiceCommon.h"

#import"DataSet.h"

 

- (void)getwebserver

{

   WebServiceCommon *webService=[[WebServiceCommonalloc] init];

    

    //方法一,取返回字符串

   NSString *result= [webServicegetResultWithURL:@"http://116.6.52.27:91/webservice/caskaforescService.asmx"xmlNS:nilmethod:@"GetCarTypeTree"pars:nil];

    NSLog(@"%@",result);

    [result release];

    //带参数传值调用方法

   NSMutableDictionary *dic=[[NSMutableDictionaryalloc]initWithObjectsAndKeys:@"test2",@"username",@"820826",@"passWord",@"1EB2D9848C5545E6BAEAA10B01222800",@"clubUserid",@"西南大区",@"BigArea",@"",@"province",@"",@"city",nil];

   NSString *result2= [webServicegetResultWithURL:@"http://116.6.52.27:91/webservice/caskaforescService.asmx"xmlNS:nilmethod:@"GetClub"pars:dic];

    NSLog(@"%@",result2);

    [dic release];

    [result2 release];

    

    //方法二,取返回数据组

    NSArray *array=nil;

   NSMutableDictionary *dic2=[[NSMutableDictionaryalloc]initWithObjectsAndKeys:@"...",@"VerifyCode", @"",@"objParams",@"20120615170225282486",@"sAccountBookID", @"XYTY124",@"productModel", @"馨原奕绒",@"brandName", nil];

    array=[webServicegetArrayWithURL:@"http://resourceservice.41go.cn/systemupdate.asmx"xmlNS:nilmethod:@"GetProductPriceInfoExt"pars:dic2];

   NSLog(@"productmodel=%@;name=%@,key=%@",[arrayobjectAtIndex:2],[arrayobjectAtIndex:3],[arrayobjectAtIndex:10]);

   //判断数据中的空值(NSArray,NSMutableDictionary等)

    if ([array objectAtIndex:10]==[NSNullnull]) {

        NSLog(@"空值!");

    }

    [dic2 release];

   //方法三,取返回DataSet

    [webServiceinitDataSetWithURL:@"http://resourceservice.41go.cn/systemupdate.asmx"xmlNS:nilmethod:@"GetYarnList"pars:nil];

    NSMutableDictionary *wb=[webService.myDataset.TablesobjectForKey:@"YarnList"];//YarnList表名,如果没有命名则为Table

    NSInteger count=[[webService.myDataset.TablesobjectForKey:@"YarnList"]count];

    for (int ii=0; ii<count; ii++) {

        NSMutableDictionary *dictemp=[wb objectForKey:[NSStringstringWithFormat:@"%d",ii]];

       NSLog(@"col1=%@;col2=%@;col3=%@",[dictempobjectForKey:@"C_AccountBookID"],[dictempobjectForKey:@"C_Name"],[dictempobjectForKey:@"C_YarnID"]);

    }

 

    [webService release];

 

}

转载于:https://www.cnblogs.com/jgCho/p/4977263.html

你可能感兴趣的文章
山西警方打击文物犯罪 成功追回春秋时期青铜重器“晋公盘”
查看>>
猎杀野生麂子牟暴利 湖北建始警方出击斩“黑手”
查看>>
「每天一道面试题」检查异常和非检查异常的区别?
查看>>
股民一审告赢上市公司和赵薇 专家称或激励更多维权行为
查看>>
中国首条民营铁路“复活” 观光火车吸引游客
查看>>
致远推出全分销A6+,走协同OA差异化竞争路
查看>>
MVVM 框架解析之双向绑定
查看>>
Vue项目使用eslint + prettier规范代码风格
查看>>
如何基于迁移学习快速识别出讲话的人是谁?
查看>>
理解javascript的call 、 apply 、 bind
查看>>
【iOS 开发】iOS 10.3 如何更换 app 图标
查看>>
自动「脑补」3D环境!DeepMind最新Science论文提出生成查询网络GQN
查看>>
比特币的标准是什么
查看>>
使用即构ZEGO视频直播SDK巧妙地实现直播答题方案
查看>>
Android解析ClassLoader(二)Android中的ClassLoader
查看>>
LRUCache原理的简单分析
查看>>
联网对战游戏开源实例分享之《斗兽棋》
查看>>
从零到壹,快速产品设计流程步骤
查看>>
人人都会设计模式---装饰模式--Decorator
查看>>
iOS 运行时之 Associative(关联)
查看>>