有一个按钮方法:
-(void) buttonTapped:(id) sender{
dispatch_async(dispatch_queue_create("countQueue", NULL), ^{
sleep(10);
NSLog(@"%d",self.count++);
});
}
self.count 是属性:
@property (nonatomic, assign) int count;
我想知道我是否通过单击按钮多次创建“countQueue”,
- countQueue 的处理任务正在运行多少个线程?
- 因为块需要在10秒内运行,如果我每2秒点击一次按钮,那么它会创建一个新队列,系统如何处理之前的任务?只是取消它?