上一页 1 2 3 4 5 6 7 8 9 ··· 36 下一页
摘要: iOS8发布了有一段时间了,我们的策划很新潮的速度给升级到iOS8了。于是XCode5不支持了,只好从MacOS 10.8升级到10.9,再升级到10.9.5,再下载XCode6安装……然后前两天上传一个版本给苹果审核,发现iTunes Connect里多了一个Prerelease选项卡,里面有一个... 阅读全文
posted @ 2015-01-29 13:28 如来藏 阅读(549) 评论(0) 推荐(0) 编辑
摘要: Here's What's New:Invite up to 1,000 external testers using just their email addressEasy to use TestFlight iOS app available on the App StoreNo need t... 阅读全文
posted @ 2015-01-29 10:57 如来藏 阅读(2065) 评论(0) 推荐(0) 编辑
摘要: TheAuto Layoutis available on the Storyboard for iOS or OS X development since XCode 5. But, I didn’t adopt the Auto Layout technology for the project... 阅读全文
posted @ 2015-01-28 09:49 如来藏 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Multi-tasking prevents apps from freezing. In most programming languages, achieving this is a bit tricky, but the NSOperationQueue class in iOS makes ... 阅读全文
posted @ 2015-01-27 15:18 如来藏 阅读(204) 评论(0) 推荐(0) 编辑
摘要: TheNSOperationQueueclass regulates the execution of a set ofNSOperationobjects. After being added to a queue, an operation remains in that queue until... 阅读全文
posted @ 2015-01-27 13:55 如来藏 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: Update 10/7/14: This tutorial has now been updated for iOS 8 and Swift;check it out!Everyone has had the frustrating experience of tapping a button or... 阅读全文
posted @ 2015-01-27 10:31 如来藏 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 一、简介一个NSOperation对象可以通过调用start方法来执行任务,默认是同步执行的。也可以将NSOperation添加到一个NSOperationQueue(操作队列)中去执行,而且是异步执行的。创建一个操作队列:[java]view plaincopyNSOperationQueue*q... 阅读全文
posted @ 2015-01-26 15:36 如来藏 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 一、NSOperation1.简介NSOperation实例封装了需要执行的操作和执行操作所需的数据,并且能够以并发或非并发的方式执行这个操作。NSOperation本身是抽象基类,因此必须使用它的子类,使用NSOperation子类的方式有2种:1> Foundation框架提供了两个具体子类直接... 阅读全文
posted @ 2015-01-26 15:35 如来藏 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 前一篇《iOS多线程编程之NSThread的使用》介绍三种多线程编程和NSThread的使用,这篇介绍NSOperation的使用。使用 NSOperation的方式有两种,一种是用定义好的两个子类:NSInvocationOperation 和 NSBlockOperation。另一种是继承NSO... 阅读全文
posted @ 2015-01-26 15:19 如来藏 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Have you ever written an app where you tried to do something, and there was a long pause while the UI was unresponsive?This is usually a sign that you... 阅读全文
posted @ 2015-01-26 13:23 如来藏 阅读(270) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 36 下一页