/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- *//** This program is free software; you can redistribute it and/or modify* it under th...
分类:
其他好文 时间:
2014-06-28 10:59:12
阅读次数:
244
NSFileManager *manager = [[NSFileManager alloc]init]; if ([manager isDeletableFileAtPath:filePath]) { [manager removeItemAtPath:filePath error:nil...
分类:
其他好文 时间:
2014-06-25 22:56:17
阅读次数:
205
1.创建和启动线程 一个NSThread对象就代表一条线程; 创建,启动线程NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];[thread start];2.线程...
分类:
其他好文 时间:
2014-06-24 13:33:55
阅读次数:
167
iOS开发多线程篇—创建线程一、创建和启动线程简单说明一个NSThread对象就代表一条线程创建、启动线程(1) NSThread*thread = [[NSThreadalloc]initWithTarget:selfselector:@selector(run)object:nil];[thre...
分类:
移动开发 时间:
2014-06-24 12:29:00
阅读次数:
351
1.线程的状态NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];[thread start];2.控制线程状态2.1>启动线程 -(void)start; //进....
分类:
编程语言 时间:
2014-06-24 11:53:02
阅读次数:
233
建立总线型拓扑。/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- *//** This program is free software; you can redistribute it and/or modify* it ...
分类:
其他好文 时间:
2014-06-24 10:54:21
阅读次数:
224
本文转载至 :http://www.cnblogs.com/superhappy/archive/2012/11/08/2761403.html经常有需求 要判断不能为空,后台老是鄙视不做非空判断的前端 ,木办法 只能写一个。第一种想法:我不就是判断 是不是nil就可以了么。结果发现太天真,用户可以...
分类:
移动开发 时间:
2014-06-24 09:33:13
阅读次数:
346
从语言角度讲, lua 5.1 定义了 # 对数组取长度的约束. 而 lua 5.2 不严格定义了,只说如果有 nil 就不确定
a[4] = 11;
print(a[#a])
---print 11
-----------------------------------
a = {}
for i=1,3 do a[i] = i*3 end...
分类:
其他好文 时间:
2014-06-22 20:56:03
阅读次数:
257
选项链是使用选项来查询和调用其属性、方法或下标的一个过程,如果选项包含一个值,则属性、方法、下标的查询和调用成功,否则,调用返回nil。
选项链能用在任何类型的选项来检查对其一个属性、方法、下标的查询和调用是否成功。
选项链可以作为强制展开的替代方式使用,但选项链的使用更加安全,不会触发一个运行时错误。
在调用一个选...
分类:
移动开发 时间:
2014-06-22 20:19:15
阅读次数:
222
local uilocal function createLayerUI() if not ui then ui=cc.Layer:create(); createLayerUI=nil; end return ui;endlocal sclocal function createLayerSc.....
分类:
其他好文 时间:
2014-06-21 10:22:02
阅读次数:
201