上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 36 下一页
摘要: Operation Queuesoperation object是 NSOperation class实例用来封装想要执行的任务。nsoperation class是抽象类必须子类化。NSInvocation-Operation类用来创建基于应用程序对象和selector的operation obj... 阅读全文
posted @ 2014-09-22 16:58 如来藏 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Dispatch Queues dispatch queues 是基于c机制的一系列自定义任务操作。遵循先进先出的规则。每次只执行一个任务,直到上个任务完成才执行新的任务。相反的,并发的dispatch queue可以启动多个任务而不用等待其他任务执行完成。提交给dispatch queue的任务必... 阅读全文
posted @ 2014-09-22 16:13 如来藏 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 在计算机发展的早期,单位工作时间的最高限额是一台计算机可以执行通过CPU的时钟速度确定。但是,随着技术的进步和处理器设计变得更紧凑,热等物理约束开始限制处理器的最高时钟速度。因此,芯片制造商寻找其它的方法来提高其芯片的整体性能。该解决方案是它们增加每个芯片上的处理器核的数量。通过增加核的数量,在单个... 阅读全文
posted @ 2014-09-22 14:32 如来藏 阅读(143) 评论(0) 推荐(0) 编辑
摘要: [self performSelector:@selector(popView:) withObject:nil afterDelay:2.0]; 阅读全文
posted @ 2014-09-16 15:58 如来藏 阅读(325) 评论(0) 推荐(0) 编辑
摘要: Quit the xcode and connect again will all right. 阅读全文
posted @ 2014-09-16 10:27 如来藏 阅读(2226) 评论(0) 推荐(0) 编辑
摘要: 第一种,手动检查//// Harpy.h// Harpy//// Created by Arthur Ariel Sabintsev on 11/14/12.// Copyright (c) 2012 Arthur Ariel Sabintsev. All rights reserved.//#im... 阅读全文
posted @ 2014-09-10 16:10 如来藏 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 最近项目到了最后的阶段,测试完一切ok后,准备打包以及提交,不料看到网上众教程,好多都是老版本的,现在IDE实现方式改了,那些方法好多都找不到,绕了一大圈,才搞明白流程,现在记录下来,以便朋友们查阅。开发环境:xcode4.4.1iphonesdk:5.1.1开发机器:macBookAir真机部署测... 阅读全文
posted @ 2014-09-10 11:31 如来藏 阅读(616) 评论(0) 推荐(0) 编辑
摘要: Dictionary 写入: if ([self.currentUserAccount length] > 0) { KeychainItemWrapper *keychainItem = [[KeychainItemWrapper alloc]initWithIdentifier:@"usera... 阅读全文
posted @ 2014-09-09 17:58 如来藏 阅读(512) 评论(0) 推荐(0) 编辑
摘要: //move the repeated item NSInteger index = [orignalArray count] - 1; for (id object in [orignalArray reverseObjectEnumerator]) { if ([orignalArray ind... 阅读全文
posted @ 2014-08-29 11:05 如来藏 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 原因在于决定row number得array变动后没有再次将其count赋值给numberOfRowsInSection中返回的成员变量。致使没有其作用 阅读全文
posted @ 2014-08-29 10:28 如来藏 阅读(437) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 36 下一页