1.Runloop基础知识- 1.1 字面意思 a 运行循环 b 跑圈 - 1.2 基本作用(作用重大) a 保持程序的持续运行(ios程序为什么能一直活着不会死) b 处理app中的各种事件(比如触摸事件、定时器事件【NSTimer】、selector事件【选择器·performSelector· ...
分类:
移动开发 时间:
2016-07-11 18:49:27
阅读次数:
231
创建定时器会在一定的间隔后执行某些操作,一般大家会这样创建定时器,这样创建的定时,self对定时器有个引用,定时器对self也有个引用,造成了循环引用,最终造成了内存泄漏,如果定时器在做下载的操作就会一直下载。 解决办法:首先创建NSTimer的这样的一个分类:NSTimer+eocBlockSup ...
分类:
其他好文 时间:
2016-07-01 11:30:52
阅读次数:
159
Runloop 概述1、与下面知识相关:系统级:GCD,mach kernel,block,pthread应用层:NSTimer,UIEvent,自动释放池,NSObject(NSDelayedPerforming),NSObject(NSThreadPerformAddition),CADisplayLink,CATransition,CAAnimation,dispatch_get_main_...
分类:
其他好文 时间:
2016-06-30 12:55:34
阅读次数:
490
原文网址:http://blog.csdn.net/enuola/article/details/8099461 调用一次计时器方法: [cpp] view plain copy myTimer = [NSTimer scheduledTimerWithTimeInterval:1.5 target ...
分类:
移动开发 时间:
2016-06-21 22:27:47
阅读次数:
219
原文网址:http://my.oschina.net/u/2340880/blog/398598 NSTimer在IOS开发中会经常用到,尤其是小型游戏,然而对于初学者时常会注意不到其中的内存释放问题,将其基本用法总结如下: 一、初始化方法:有五种初始化方法,分别是 + (NSTimer *)tim ...
分类:
移动开发 时间:
2016-06-21 22:23:34
阅读次数:
187
原文网址:http://www.cnblogs.com/zhulin/archive/2012/02/02/2335866.html 1、初始化 + (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget sele ...
分类:
移动开发 时间:
2016-06-21 22:21:01
阅读次数:
219
原文网址:http://blog.csdn.net/tangshoulin/article/details/7644124 1、初始化 + (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector: ...
分类:
移动开发 时间:
2016-06-21 22:12:46
阅读次数:
262
1NSString+YYAdd 2NSNumber+YYAdd 3.NSArray+YYAdd 4.NSTimer+YYAdd 5.NSNotificationCenter+YYAdd 6UIImage+YYAdd 7.UIControl+YYAdd 8.UIBarButtonItem+YYAdd ...
分类:
其他好文 时间:
2016-06-20 06:52:06
阅读次数:
847
基础知识 作用 保持程序持续运行 处理app中的各种事件(如触摸事件、定时器事件【NSTimer】、selector事件【选择器·performSelector···】) 节省CPU资源,提高程序性能 说明 没有RunLoop,那么程序一启动就会退出 有了Runoop,那么相当于在内部有一个死循环, ...
分类:
其他好文 时间:
2016-06-18 18:37:48
阅读次数:
256
开头:资料来源网上搜索,整理成自己的笔记形式一.IPTABLES服务状态的检查:命令:serviceiptablesstatus情形1:防火墙服务已安装,但还未运行[root@woxplife~]#serviceiptablesstatusiptables:Firewallisnotrunning.情形2:如图表示防火墙服务已安装且已开启,但还是未配置状..
分类:
其他好文 时间:
2016-06-15 11:04:44
阅读次数:
1349