NSDate * date = [NSCalendarDate date]; NSLog(@"%@", date);日历在IOS里报错,,。 NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter ...
分类:
其他好文 时间:
2014-06-28 16:22:54
阅读次数:
303
// ********************不可变最字典***************** /* NSDictionary * dic = [NSDictionary dictionaryWithObject:@"张三" forKey:@"name" ]; NSLog(@"%@", di...
分类:
其他好文 时间:
2014-06-26 22:59:39
阅读次数:
243
CGRect screenBounds = [ [UIScreen mainScreen]bounds];//返回的是带有状态栏的Rect NSLog(@"%@", NSStringFromCGRect(screenBounds)); CGRect viewBounds = [ [U...
分类:
其他好文 时间:
2014-06-26 21:12:57
阅读次数:
173
一个简单的block的定义:(void)(^myblock)()=^{ NSLog(@"------block输出----");};//调用blockmyblock();有参数和返回值的block(int)(^blockAdd)(int,int)=^(a,b){ return a+b; ...
分类:
移动开发 时间:
2014-06-26 00:33:45
阅读次数:
263
开发环境自己写Demo的话,在[MAC OS X]-->[Application]-->[Command Line Tool](命令行模板 ) 设置文件名称的时候 Type选择Foundation系统库即可NSLog 输出格式 ?%@ 对象?%d, %i 整数?%u 无符整形?%f 浮点...
分类:
其他好文 时间:
2014-06-25 15:46:07
阅读次数:
184
// IOS相应路径 NSString* bundlePath = [[NSBundle mainBundle] bundlePath]; NSLog(@"bundlePath = %@", bundlePath);// documents NSString* documentsDirec...
分类:
移动开发 时间:
2014-06-20 21:41:56
阅读次数:
250
软件运行越来越慢,突然在想,是不是因为NSLog,太多的原因。因为自己总是喜欢用NSLog打印出变量,然后,在进行调试程序,找Bug.网上查找资料,果然,和这个还是有点关系的。直接上代码,使其在release下不输出NSLog打印的内容,debug下才输出。要注意,这部分代码是要写在prefix.p...
分类:
其他好文 时间:
2014-06-18 08:58:38
阅读次数:
208
在.pch中写:#ifdef DEBUG // 调试阶段#define CXSLog(...) NSLog(__VA_ARGS__)#else // 发布阶段#defineCXSLog(...)#endif
分类:
移动开发 时间:
2014-06-17 14:08:14
阅读次数:
263
一、NSString创建字符串。NSString*astring=@"ThisisaString!";创建空字符串,给予赋值。NSString*astring=[[NSStringalloc]init];astring=@"ThisisaString!";NSLog(@"astring:%@",as...
分类:
其他好文 时间:
2014-06-14 16:09:34
阅读次数:
237
当我们要在两个for循环里得到指定连续整数时,需要怎么来写这个for循环呢?比如我们要得到5到38的连续整数首先我们得知道for循环里得内循环的count,这里我们假设是5;即内循环是for(int
j = 0; j 4 && result < 39) { NSLog (@"%d"...
分类:
其他好文 时间:
2014-06-09 14:15:15
阅读次数:
190