码迷,mamicode.com
首页 > 其他好文 > 详细

取消延时函数

时间:2014-05-13 08:17:19      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:class   code   c   tar   get   a   

- (void) networkReachabilityDidUpdate:(NetworkReachability*)reachability

{

    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(reachabilityChanged) object:nil];

    

    [self performSelector:@selector(reachabilityChanged) withObject:nil afterDelay:0.1f];

}

//cancelPreviousPerformRequestsWithTarget是终止上次performSelector的Delay调用

//上面例子是防止在afterDelay时间内重复调用reachabilityChanged

取消延时函数,布布扣,bubuko.com

取消延时函数

标签:class   code   c   tar   get   a   

原文地址:http://blog.csdn.net/fucheng56/article/details/25591531

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!