码迷,mamicode.com
首页 >  
搜索关键字:nstimer    ( 391个结果
IOS系列——NStimer
Timer常用的一些东西 1. 初始化   timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(changeTime:) userInfo:nil repeats:YES]; 2.timer 马上执行[tiemr fire];如果在初始化的时候不加这一句代码 ,timer也马上回...
分类:移动开发   时间:2014-07-11 00:43:22    阅读次数:359
iOS: UIScrollView pauses NSTimer while scrolling
StackOverflowhttp://stackoverflow.com/a/7059499Question:I have aUIScrollViewthat has a series of labels which are rapidly updating numbers (every .06 ...
分类:移动开发   时间:2014-07-07 22:02:50    阅读次数:330
防止 NSTimer retain 作为 target 的 self
先吐槽一下这个标题,空格略蛋疼,不像中文,但是不写空格看上去则更诡异,求解决方案……NSTimer会retain它的target,这样如果在控制器当中定义一个NSTimer,target指定为self,则会引起循环引用。解决方案和防止block引用self一样,第一步需要把NSTimer的操作封装到...
分类:其他好文   时间:2014-07-06 14:44:21    阅读次数:141
iOS开发- 自动消失的弹出框
- (void)timerFireMethod:(NSTimer*)theTimer//弹出框 { UIAlertView *promptAlert = (UIAlertView*)[theTimer userInfo]; [promptAlert dismissWithClickedButtonIndex:0 animated:NO]; promptAlert =NULL...
分类:移动开发   时间:2014-06-27 09:21:00    阅读次数:219
NStimer
tableview 滑动导致 NSTimer和delegate 回调停止 解决办法// request回调NSURLRequest*request=...NSURLConnection*connection=[[NSURLConnectionalloc] ...
分类:其他好文   时间:2014-06-22 23:51:14    阅读次数:233
Swift开发iOS项目实战视频教程(二)---图片与动画
本课主要介绍UIImageview、NSTimer的使用,并介绍了一种动画实现方式。 本教程摒弃枯燥的语法和知识讲解,全是有趣有料的项目实战! 视频优酷链接:v.youku.com/v_show/id_XNzI4NDkxNjg0.html 高清视频下载:pan.baidu.com/s/1mgp3kP6...
分类:移动开发   时间:2014-06-22 18:29:24    阅读次数:228
NSTimer的使用
当进入页面时,定时器是打开的。当离开页面时,定时器会关掉。直接上代码。.h部分#import @interface RootViewController : UIViewController{ //定义定时器 NSTimer *timer;}@end.m部分-(void)viewWill...
分类:其他好文   时间:2014-06-18 09:01:10    阅读次数:170
ios:NSRunLoop
ios:NSRunLoop1.NSRunLoop是消息机制的处理模式NSRunLoop的作用在于有事情做的时候使的当前NSRunLoop的线程工作,没有事情做让当前NSRunLoop的线程休眠2.nstimer默认添加到当前NSRunLoop中,也可以手动制定添加到自己新建的NSRunLoop的中[...
分类:移动开发   时间:2014-06-13 07:26:02    阅读次数:288
Xcode中设置按钮在十分钟之内禁用
btn.enabled=NO;` NSTimer * notificationTimer = [NSTimer scheduledTimerWithTimeInterval:10*60.0 target:selfselector:@selector(enable) userInfo:nil rep....
分类:其他好文   时间:2014-06-04 18:08:11    阅读次数:199
ios 继承UIView实现自定义视图——实现画图
主要的原理包括: 继承UIView ,重载drawrect和重载触摸事件 待实现的功能还有,路径数组保存等。 #import "testdrow.h" @implementation testdrow UIColor *pick_color; int choose; UIBezierPath *mpath ; UIBezierPath *eraser_path; NSTimer *myt...
分类:移动开发   时间:2014-06-03 00:20:36    阅读次数:323
391条   上一页 1 ... 36 37 38 39 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!