利用抓取的快递100接口实现的快递查询功能

@property (strong,nonatomic) UITextField *showContextView;

//接受相关结果的字符串

@property (nonatomic,strong)NSMutableString *result;

@property (nonatomic,strong)NSMutableArray *dataArr;

@end

@implementation ExpressViewController{

UITableView *contentTable;

}

- (void)viewDidLoad {

[super viewDidLoad];

self.view.backgroundColor = [UIColor whiteColor];

self.dataArr = [[NSMutableArray alloc]init];

[self setXFView];

[self setView];

//

//    [self loadMoreTopics];

// Do any additional setup after loading the view.

}

-(void)setView{

UIView *headView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, 100)];

self.showContextView = [[UITextField alloc]initWithFrame:CGRectMake(10,0, ScreenWidth-20, 30)];

self.showContextView.keyboardType = UIKeyboardTypeNumberPad;

self.showContextView.placeholder = @"请输入单号";

self.showContextView.text = @"3320426143552";

[self.showContextView setFont:[UIFont fontWithName:@"Arial" size:23]] ;

self.showContextView.textColor = [UIColor blackColor];

self.showContextView.backgroundColor = textBackGroundColor;

self.showContextView.delegate = self;

[headView addSubview:self.showContextView];


UIButton *search = [UIButton addBtnImage:@"" AndFrame:CGRectMake(ScreenWidth-110, getExpressBtn.frame.origin.y, 100, 30) WithTitle:@"查找" AndTitleColor:textdeepgrayColor AndTitleFont:18 AndImgInsets:UIEdgeInsetsZero AndTitleEdgeInsets:UIEdgeInsetsZero AndTarget:self AndAction:@selector(loadMoreTopics)];

[headView addSubview:search];

headView.frame = CGRectMake(0, 0, ScreenWidth, frameH(search, 10)) ;

contentTable = [[UITableView alloc]initWithFrame:CGRectMake(0, 10, ScreenWidth, ScreenHeight-frameH(search, 10)) style:UITableViewStylePlain];

contentTable.dataSource = self;

contentTable.delegate = self;

contentTable.separatorStyle = UITableViewCellSeparatorStyleNone;

contentTable.tableHeaderView = headView;

[self.view addSubview:contentTable];

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

return self.dataArr.count;

}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

return 100;

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

NSString *tag            =[NSString stringWithFormat:@"%ldtag",(long)indexPath.row];

//        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tag];

NSDictionary *dic = [self.dataArr objectAtIndex:indexPath.row];

//            if (cell == nil) {

UITableViewCell* cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tag];

//            }

UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, 100)];

UILabel *time = [UILabel addLabelWithFrame:CGRectMake(0, 5, 90, 100) AndText:[dic valueForKey:@"time"] AndFont:16 AndAlpha:1 AndColor:[UIColor blackColor]];

[time setTextAlignment:NSTextAlignmentCenter];

[view addSubview:time];

time.numberOfLines = 0;

Phonelabel *content;

UILabel *content1;

NSString *contentText = [dic valueForKey:@"context"];

if([contentText containsString:@"派件"])

{

content =[[Phonelabel alloc] initWithFrame:CGRectMake(140, 10, ScreenWidth-145, 90)];

content.centerY = time.centerY;

[content setFont:[UIFont fontWithName:@"Arial" size:18]];

NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:contentText];

if (indexPath.row == 0) content.color = [UIColor redColor];

else  content.color = [UIColor blackColor];

[content setLinkText:attStr];

[view addSubview:content];

}else{

content1 = [[UILabel alloc]initWithFrame:CGRectMake(140, 0, ScreenWidth-145, 100)];

content1.numberOfLines = 0;

content1.text = [dic valueForKey:@"context"];

[view addSubview:content1];

}

NSLog(@"%lu,%ld",(unsigned long)self.dataArr.count,(long)indexPath.row);

if (indexPath.row == 0) {

[time setTextColor:textBlueColor];

[content setTextColor:textBlueColor];

}

float y;

if (content) {

y = content.centerY;

}else{

y = content1.centerY;

}

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(frameW(time, 10), y - 15, 30, 30)];

imageView.cornerRadius = 15;

if ([contentText containsString:@"派件"]) {

imageView.image = [UIImage imageNamed:@"icon-people"];

}else if([contentText containsString:@"签收"]) {

imageView.image = [UIImage imageNamed:@"icon_ok"];

}else {

imageView.image = [UIImage imageNamed:@"icon-yunshu"];

}

[view addSubview:imageView];

[cell addSubview:view];

cell.selectionStyle = UITableViewCellSelectionStyleNone;

return cell;

}

-(void)beginRecongnize{

[self startListenning];

}


-(void)loadMoreTopics{

[self.showContextView resignFirstResponder];

if (![self.showContextView.text isPureInt:self.showContextView.text ]) {

[SVProgressHUD showErrorWithStatus:@"请输入正确单号"];

return;

}

[SVProgressHUD showWithStatus:@"正在努力加载中!"];

//    http://www.kuaidi100.com/autonumber/autoComNum?text=8821921

//    NSDictionary *dic1 = @{};

NSString *url1 =[NSString stringWithFormat:@"%@%@",ExpressCAPI,self.showContextView.text];

[HttpTool post:url1  params:nil success:^(id json){

//        int status = [[json valueForKey:@"status"] intValue] ;

[SVProgressHUD dismiss];

NSArray *array = [json valueForKey:@"auto"];

if (array.count<1) {

[SVProgressHUD showErrorWithStatus:@"单号错误,请重新填写!"];

return ;

}

NSDictionary *dic = array[0];

NSString *comCode = [dic valueForKey:@"comCode"];

[SVProgressHUD dismiss];

[self getStatue:comCode];

}failure:^(NSError *error){

NSLog(@"%@",error);

[SVProgressHUD showErrorWithStatus:@"网络请求失败"];

//        [SVProgressHUD dismiss];

}];

}

//com 物流公司编号

//nu 物流单号

//time 每条跟踪信息的时间

//context 每条跟综信息的描述

//state 快递单当前的状态 :

//0:在途,即货物处于运输过程中;

//1:揽件,货物已由快递公司揽收并且产生了第一条跟踪信息;

//2:疑难,货物寄送过程出了问题;

//3:签收,收件人已签收;

//4:退签,即货物由于用户拒签、超区等原因退回,而且发件人已经签收;

//5:派件,即快递正在进行同城派件;

//6:退回,货物正处于退回发件人的途中;

//该状态还在不断完善中,若您有更多的参数需求,欢迎发邮件至 kuaidi@kingdee.com 提出。

//status 查询结果状态:

//0:物流单暂无结果,

//1:查询成功,

//2:接口出现异常,

//message 无意义,请忽略

//condition 无意义,请忽略

//ischeck 无意义,请忽略

-(void)getStatue:(NSString *)comCode{

NSString *url =[NSString stringWithFormat:@"http://www.kuaidi100.com/query?type=%@&postid=%@",comCode,self.showContextView.text];

[HttpTool post:url  params:nil success:^(id json){

[SVProgressHUD dismiss];

int status = [[json valueForKey:@"status"] intValue];

if (status) {

switch (status) {

case 200:

{self.dataArr = [json valueForKey:@"data"];

[contentTable reloadData];

break;

}

case 201:

[SVProgressHUD showSuccessWithStatus:[json valueForKey:@"message"]];

break;

default:

[SVProgressHUD showErrorWithStatus:[json valueForKey:@"message"]];

break;

}

}else{

[SVProgressHUD showErrorWithStatus:@"查询失败!"];

}

}failure:^(NSError *error){

NSLog(@"%@",error);

[SVProgressHUD showErrorWithStatus:@"网络请求失败"];

//        [SVProgressHUD dismiss];

}];

}

- (BOOL)textFieldShouldReturn:(UITextField *)textField

{

//    回收键盘,取消第一响应者

[textField resignFirstResponder]; return YES;

}

@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • *7月8日上午 N:Block :跟一个函数块差不多,会对里面所有的内容的引用计数+1,想要解决就用__block...
    炙冰阅读 2,468评论 1 14
  • iOS开发系列--网络开发 概览 大部分应用程序都或多或少会牵扯到网络开发,例如说新浪微博、微信等,这些应用本身可...
    lichengjin阅读 3,637评论 2 7
  • iphone开发笔记 退回输入键盘 - (BOOL) textFieldShouldReturn:(id)text...
    爱易寒曲易散阅读 617评论 0 1
  • //设置尺寸为屏幕尺寸的时候self.window = [[UIWindow alloc] initWithFra...
    LuckTime阅读 791评论 0 0
  • 1、禁止手机睡眠[UIApplication sharedApplication].idleTimerDisabl...
    DingGa阅读 1,114评论 1 6