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

NStimer

时间:2014-06-22 23:51:14      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:des   class   http   tar   com   get   

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

标签:des   class   http   tar   com   get   

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

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