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层面的成员变量来用的,这样避免了在异步处理结束前就释放了对应的处理对象




    无论生活、还是技术,一切都不断的学习和更新~~~努力~
  • 相关阅读:
    安装触摸板驱动导致系统无法开机
    TensorBoard的使用
    TensorFlow 编程基础
    在Anaconda3下安装(CPU版)TensorFlow(清华镜像源)
    C 程序
    CodeBlocks 断点调试
    数字图像处理之复原处理
    数字图像处理之频域图像增强
    数字图像处理之傅里叶变换
    算法导论中的四种基本排序
  • 原文地址:https://www.cnblogs.com/GoGoagg/p/2298196.html
Copyright © 2011-2022 走看看