摘要: ios app 25个 改善程序性能技巧http://www.raywenderlich.com/31166/25-ios-app-performance-tips-tricks 阅读全文
posted @ 2013-06-13 18:57 OpenSoucre 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1. Create a NSOperationQueue to handle background downloading.NSOperationQueue *operationQueue = [[NSOperationQueue alloc]init];2. Now create an NSInvocationOperation for each image that you want to download and add it to operationQueue.int noOfImages = 500;for(int i = 0; i noOfImages; i++){NSInvoc. 阅读全文
posted @ 2013-06-13 18:51 OpenSoucre 阅读(817) 评论(0) 推荐(0) 编辑