参数1.动画时长参数2.要改变属性3.[UIViewanimateWithDuration:2animations:^{self.changeView.backgroundColor=[UIColorgreenColor];}completion:^(BOOLfinished){动画完成时调用finishde:用于动画是否完成if(finished){NSLog(@"完成");}NSLog(@"kkkk");}];
分类:
其他好文 时间:
2014-09-18 03:18:23
阅读次数:
156
for VS for(... in ...)
硬件:i5 Cpu, 10G 内存,Mac OS X 10.9.4
数据量:10^7 的数组,
时间:单位 秒,精确度 毫秒
enumerateObjectsUsingBlock VS for(... in ...)
硬件:i5 Cpu, 10G 内存,Mac OS X 10.9.4
数据量:10^4 的数组,执行一次NSLog输出
时间:单位 秒,精确度 毫秒...
分类:
其他好文 时间:
2014-09-17 15:16:12
阅读次数:
178
1 NSLog(@"char-%zu",sizeof(char)); 2 3 NSLog(@"int-%zu\n,float-%zu\n,double-%zu\n",sizeof(int),sizeof(float),sizeof(double)); 4 5 NSLog...
分类:
其他好文 时间:
2014-09-16 20:34:01
阅读次数:
182
1.Locale设置DatePicker的地区,即设置DatePicker显示的语言。1.跟踪所有可用的地区,取出想要的地区NSLog(@"%@", [NSLocale availableLocaleIdentifiers]);2. 设置日期选择控件的地区[datePicker setLocale:...
分类:
移动开发 时间:
2014-09-16 15:44:00
阅读次数:
171
1.将OC的数组转化成OC格式的字符串NSArray*arr=@[@"aa",@"bb",@"cc"];2.转化NSString*jsonStr=[arrJSONString];NSLog(@"%@",jsonStr);
分类:
Web程序 时间:
2014-09-15 03:26:58
阅读次数:
233
Person*p = [[Personalloc]init];// 指针变量的地址NSLog(@"%p", &p);// 对象的地址NSLog(@"%p", p);// NSLog(@"%@", p);2、NSLog(@“%s\n”,_func_);输出当前函数名3、NSLog(@“%d”,_LI....
分类:
其他好文 时间:
2014-09-14 23:29:27
阅读次数:
275
1.略2.#import int main(int argc, const char * argv[]){ @autoreleasepool { // insert code here... NSLog(@"In Obiective-c, lowerc...
分类:
其他好文 时间:
2014-09-13 19:58:45
阅读次数:
318
//DLog代替NSLog//debugMethod() 代替 NSLog(@"%s", __func__)//DLog在release下不会输出#ifdef DEBUG# define DLog(fmt, ...) NSLog((@"[文件名:%s]\n" "[函数名:%s]\n" "[行号:%d...
分类:
移动开发 时间:
2014-09-12 14:52:03
阅读次数:
194
1 //1、 2 NSString *postURL = [NSString stringWithFormat:@"http://xxxxxx.php?model=%@&data=%@", myModel, myAllData]; 3 NSLog(@"发送注册请求URL:%@", postURL)....
分类:
移动开发 时间:
2014-09-07 22:24:45
阅读次数:
235
///////当应用程序接在完成时触发-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{NSLog(@"%s",__FUNCTION__);self.window=[[UIWindowalloc]initWithFrame:[[UIScreenmainScreen]bounds]];//Overridepointforcusto..
分类:
其他好文 时间:
2014-09-05 03:20:41
阅读次数:
269