Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将多个 NSOperations 添加到 NSOperationQueue ,但要控制何时发送下一个操作。
如何配置 NSOperationQueue 以将“发送下一个作业”方法“委托”给 NSOperationQueue 的所有者
您可以这样做:您可以设置两个 NSOperations 并使一个依赖于另一个并将其添加到同一个队列中。第一个是虚拟操作和触发,将触发第二个操作。因此,您可以将第二个操作的所有实例添加到队列中,并且每当您想触发它时,只需将第一个操作添加到同一个队列中,它将立即触发第二个操作(因为第一个操作是虚拟的和空白的)。