zoukankan      html  css  js  c++  java
  • asihttprequest简单异步

    调试环境:
    ASIHTTPRequest版本1.8.1-61 2011-9-19修复版
    Xcode版本4.2.1
    iOS5.0
    Mac OS X10.7.1

    在此代码仅仅捣鼓异步的初步处理
    1、需要实现协议接口

    ASIHTTPRequestDelegate


    主要requestFailed,requestFinished之类的接口

    2、调用的时候,建议启动异步request的对象和异步处理的对象分开定义

    下面我的代码是启动异步和异步处理定义在一起

    代码:

    @interface AsynBaseDeal : NSObject<ASIHTTPRequestDelegate>

    - (void)LoadImage:(NSString *)strUrl;

    @end
    @implementation AsynBaseDeal

    - (id)init
    {
    self = [super init];
    if (self)
    {
    }

    return self;
    }

    - (void)dealloc
    {
    [super dealloc];
    }

    - (void)LoadImage:(NSString *)strUrl
    {
    if (strUrl)
    {
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:strUrl]];

    [request setDelegate:self];
    [request startAsynchronous];
    }
    }

    - (void)requestFailed:(ASIHTTPRequest *)request
    {
    NSLog(@"error :%@" ,[request error]);
    }

    - (void)requestFinished:(ASIHTTPRequest *)request
    {
    NSLog(@"finish :%@ ,%d" ,[request responseData] ,request.responseEncoding);
    }
    @end


    在使用中,我把AsynBaseDeal对象定义为UIApplication层面的成员变量来用的,这样避免了在异步处理结束前就释放了对应的处理对象




    无论生活、还是技术,一切都不断的学习和更新~~~努力~
  • 相关阅读:
    Linux下redis的安装
    elasticsearch使用时问题
    Elasticsearch 2.x plugin 问题汇总
    elasticsearch-jdbc 插件说明
    ElasticSearch 2.x 问题汇总
    深入JVM《一》
    linux fastdfs 搭建配置(单机)
    mybatis自动generator
    spring-boot mybatis 配置 主从分离 事务
    Maven Nexus
  • 原文地址:https://www.cnblogs.com/GoGoagg/p/2298196.html
Copyright © 2011-2022 走看看