首页 > 其他 > 详细

NStimer

时间:2014-06-22 23:50:12      阅读:366      评论:0      收藏:0      [点我收藏+]

tableview 滑动导致 NSTimer和delegate 回调停止 解决办法

// request回调

NSURLRequest *request = ...

NSURLConnection *connection = [[NSURLConnection alloc]
                                               initWithRequest:request
                                                          delegate:self
                                             startImmediately:NO];
[connection scheduleInRunLoop:[NSRunLoop currentRunLoop]
                                            forMode:NSRunLoopCommonModes];
[connection start];


//timer 回调

NSTimer *updateTimer = [NSTimer scheduledTimerWithTimeInterval:0.01f    target:self selector:@selector(updatePencent) userInfo:nil repeats:YES];

NSRunLoop *main=[NSRunLoop currentRunLoop];
[main addTimer:updateTimer forMode:NSRunLoopCommonModes];

NStimer,布布扣,bubuko.com

NStimer

原文:http://www.cnblogs.com/hl666/p/3800063.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!