今天写了如下的一段代码:
for (NSInteger i =
0; i 10000000; i++) {
UIView * v = [[UIView
alloc] init];
[v release];
}
NSLog(@"好了!");
并且观测了内存,发现“好了”这个词打印出来之前,内存一直处于疯长阶段,在“好了”打印出来之后,内存...
分类:
其他好文 时间:
2014-10-07 13:33:33
阅读次数:
105
在程序中,发现一个问题,写了个例子,如下: NSDictionary * dict = [[NSDictionary alloc] init]; NSString * str = [dict objectForKey:@"key"]; NSLog(@"%d",[str intValue]);...
分类:
其他好文 时间:
2014-09-28 21:07:25
阅读次数:
149
1. NSLog(@"数字N N的平方"); NSLog(@"--------------------"); for (int n = 1; n <= 10; n++) { NSLog(@"%2d ...
分类:
其他好文 时间:
2014-09-28 02:26:50
阅读次数:
255
———Java培训、Android培训、iOS培训、.Net培训、期待与您交流! ———1、代码编写以下是第二个OC程序: 1 #import 2 3 int main() 4 { 5 //NSLog输出内容会自动换行 6 //NSL3个字母都是大写 7 //@和""之间...
分类:
其他好文 时间:
2014-09-27 02:20:39
阅读次数:
201
1.在Xcode5下,获取程序名字(app name)的方法为:NSString *proName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"];NSLog(@"dicName ==== ...
分类:
移动开发 时间:
2014-09-25 17:09:29
阅读次数:
174
#ifdef TEST_MODE#define NSLog(...) iydLog(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)#endif//// iydLogWithFile.m// ebook//// Created by xiejinni...
分类:
其他好文 时间:
2014-09-24 19:06:47
阅读次数:
142
前提:在XCode做开发调试时往往需要打印一些调试信息做debug用,大家知道当打印信息的地方多了之后在模拟器上跑可能不会有什么问题,因为模拟器用的是电脑的硬件但是当应用跑在设备上时这些输出语句会在很大程度上影响应用的性能,针对这种问题可以写一些宏来控制这些调试信息的输出。在release版本禁止输...
分类:
其他好文 时间:
2014-09-24 11:11:36
阅读次数:
179
//if语句 int score = 80; if (score > 60 ) { NSLog(@"及格"); }else { NSLog(@"不及格"); } ...
分类:
其他好文 时间:
2014-09-22 00:32:41
阅读次数:
307
//基本数据类型 int i = 10; float f = 3.1567f; double d = 3.123e+11; char c = 'x'; NSLog(@"i:%d",i); ...
分类:
其他好文 时间:
2014-09-21 14:27:31
阅读次数:
147
NSLog(@"%@", NSHomeDirectory());//沙盒主目录
NSLog(@"%@", NSTemporaryDirectory());//沙盒中tmp文件夹的路径
NSLog(@"%@", [[NSBundle mainBundle] bundlePath]);//沙盒中*.app包的路径
NSLog(@"%@", [NSSearchPathForDir...
分类:
移动开发 时间:
2014-09-19 21:13:26
阅读次数:
226