码迷,mamicode.com
首页 >  
搜索关键字:nstimer    ( 391个结果
用nstimer实现倒计时
用nstimer实现倒计时 // [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES]; // - (void)ti
分类:其他好文   时间:2016-03-08 13:31:01    阅读次数:77
0829-0610modal&画图
0829-0610modal&画图 -------------- 刷贞CADisplayLink 美妙60次数 //在绘图上比NSTimer好 清屏 -initWithCoder //setNeesDisplay 重新drawRect -awakeFromNib前还有一个方法 -initWithCo
分类:其他好文   时间:2016-03-08 08:08:18    阅读次数:178
iOS中NSTimer的invalidate调用之后
大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处. 如果觉得写的不好请多提意见,如果觉得不错请多多支持点赞.谢谢! hopy ;) 免责申明:本博客提供的所有翻译文章原稿均来自互联网,仅供学习交流之用,请勿进行商业用途。同时,转载时不要移除本申明。如产生任何纠纷,均与本博客所有人、发表该翻译稿之人无任何关系。谢谢合作! 一旦一个定时器被创建并且被添加进一个运行循环(run loop),...
分类:移动开发   时间:2016-03-04 10:36:37    阅读次数:182
NSRunLoop和NSTimer的小Demo
#import "ViewController.h" @interface ViewController () @property(strong, nonatomic) NSTimer *timer; @end @implementation ViewController - (void)viewD
分类:其他好文   时间:2016-03-01 14:33:06    阅读次数:127
解决定时器在主线程不工作问题
有时候在主线程执行一些操作的时候,定时器会被卡死,比如来回滚动和点击屏幕处理一些主线程事务时, 就是说主界面有UITableView或者UIScrollView,滑动UITableView或者UIScrollView。这个时候NSTimer失效了。 NSTimer *timer = [NSTimer
分类:编程语言   时间:2016-02-25 13:32:47    阅读次数:362
iOS多线程的初步研究(四)-- NSTimer
iOS多线程的初步研究(四)-- NSTimer 原文地址 http://www.cnblogs.com/sunfrog/p/3243230.html 理解run loop后,才能彻底理解NSTimer的实现原理,也就是说NSTimer实际上依赖run loop实现的。 先看看NSTimer的两个常
分类:移动开发   时间:2016-02-24 19:26:39    阅读次数:260
解决定时器在主线程不工作的问题
NSTimer *timer = [NSTimer timerWithTimeInterval:2 target:self selector:@selector(someAction) userInfo:nil repeats:YES]; [[NSRunLoop mainRunLoop] addTi
分类:编程语言   时间:2016-02-23 20:32:39    阅读次数:268
IOS系列——NStimer
Timer经常使用的一些东西 1. 初始化 timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(changeTime:) userInfo:nil <span style="font-fam
分类:移动开发   时间:2016-02-23 13:18:59    阅读次数:165
ios 自动锁屏
#import <UIKit/UIKit.h> @interface ELCUIApplication : UIApplication { NSTimer *_idleTimer; NSInteger timeCount; } @end #import "ELCUIApplication.h" @i
分类:移动开发   时间:2016-02-22 17:35:37    阅读次数:199
延时调用
方法1:performSelector [self performSelector:(SEL) withObject:(id) afterDelay:(NSTimeInterval)] --SEL 调用哪个方法 --id 参数 --NSTimeInterval 延时时间 方法2:NSTimer NS
分类:其他好文   时间:2016-02-18 22:43:50    阅读次数:148
391条   上一页 1 ... 12 13 14 15 16 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!