摘要: Before xcode 4.3 we can use this to encode and decode NSCachedURLResponse:@implementation NSCachedURLResponse (NSCoder)- (void)encodeWithCoder:(NSCode... 阅读全文
posted @ 2012-10-23 15:24 Proteas 阅读(251) 评论(0) 推荐(0) 编辑
摘要: xcode 首先会在它的“偏好设置PList”中查找对应的信息。如果没有找到,会使用“地址簿”中当前用户信息。如果两个都设置了,那 PList 中的优先级更好一些。在默认情况下,ORGANIZATIONNAME 并没有设置。1、读取 :defaults read com.apple.Xcode PB... 阅读全文
posted @ 2012-10-12 13:14 Proteas 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 1、UIWebDocumentView 2、WebView 3、 //================================================================// 私有框架所在目录? /Applications/Xcode.app/Contents/Devel... 阅读全文
posted @ 2012-10-12 00:12 Proteas 阅读(803) 评论(0) 推荐(0) 编辑
摘要: The Objective-C language level synchronization uses the mutex, just likeNSLockdoes. Semantically there are some small technical differences, but it is... 阅读全文
posted @ 2012-09-21 13:58 Proteas 阅读(1193) 评论(1) 推荐(0) 编辑
摘要: Class A: @interface ClassA : NSObject{}@property(nonatomic, retain) Foo* foo;@end Class B: @interface ClassB : NSObject{Foo* foo;}@property(nonatomi... 阅读全文
posted @ 2012-08-30 12:12 Proteas 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: 如果读最新版的代码有问题,可以选一个早期的代码读读。 另外,一开始不要淹没在细节中,可以从类图上鸟瞰下实现。 类图的PDF文件:http://files.cnblogs.com/Proteas/lua-1-uml.pdf 类图如下: 阅读全文
posted @ 2012-08-29 11:35 Proteas 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Unit Test 工具1、OCUnit:从 xcode 2.1 开始集成到开发环境中,使用方便,不需要引入额外的库。并可以配置 xcodebuild,实现在命令行测试,从而在 CI 中进行测试与报告。2、GTM 的单元测试部分:对 OCUnit 进行了扩展,增加了一些宏。地址:https://co... 阅读全文
posted @ 2012-08-21 16:36 Proteas 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 在进行 iOS 时一般会遇到从网络上获取 JSON 格式数据的情况, 现在有很多框架可以将 JSON 格式的字符串解析成 NSDictionary。 但是解析成 NSDictionary 后就直接使用吗?每次读取值,都要知道类型;都要用 objectForKey? 这样我们用起来也太麻烦... 阅读全文
posted @ 2012-08-09 15:09 Proteas 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: 1、为什么要在应用中引入脚本?2、为什么是 Lua ?3、使用 Lua 开发应用的几种模式4、Hello Lua5、Meta-*: Lua 与 Objective-C 集成的原理6、wax 框架及其本身的一些问题7、Demos8、其它9、目前没有解决的问题PDF:http://files.cnblo... 阅读全文
posted @ 2012-07-26 15:40 Proteas 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 1、Belady's algorithms2、random replacement3、first in first out4、least frequent used (LFU)5、simple time-based6、least recently used (LRU)7、adaptive repla... 阅读全文
posted @ 2012-06-27 19:00 Proteas 阅读(173) 评论(0) 推荐(0) 编辑