티스토리 뷰
출처
dispatch_group_notify
dispatch_group_notify(<#dispatch_group_t _Nonnull group#>, <#dispatch_queue_t _Nonnull queue#>, <#^(void)block#>)
param
예제
dispatch_group_t group = dispatch_group_create();
dispatch_queue_t globalQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_group_async(group, globalQueue, ^{
NSLog(@"job 1 Start!");
[NSThread sleepForTimeInterval:3];
NSLog(@"job 1 End!");
});
dispatch_group_async(group, globalQueue, ^{
NSLog(@"job 2 Start!");
[NSThread sleepForTimeInterval:3];
NSLog(@"job 2 End!");
});
dispatch_group_async(group, globalQueue, ^{
NSLog(@"job 3 Start!");
[NSThread sleepForTimeInterval:3];
NSLog(@"job 3 End!");
});
dispatch_queue_t mainQueue = dispatch_get_main_queue();
dispatch_group_notify(group, mainQueue, ^{
NSLog(@"Notify Start!");
if ([NSThread isMainThread]) {
NSLog(@"Here is MainThread");
} else {
NSLog(@"Here is Not MainThread");
}
NSLog(@"Notify End!");
});
NSLog(@"End!");
결과
'iOS 개발 > iOS' 카테고리의 다른 글
[iOS] iCloud Backup 이 되지 않도록 막는 방법 (0) | 2017.06.21 |
---|---|
[iOS] NSURLSession 에 대한 이해 (0) | 2017.05.23 |
dispatch_queue 의 sync, async 와 Thread 의 관계 (1) | 2017.02.23 |
[iOS] Carthage 의 장점 및 사용법 (0) | 2017.02.01 |
[iOS] 코드 사이닝 (프로비저닝 프로파일, 인증서) (2) | 2016.12.22 |
- Total
- Today
- Yesterday
- 읽기 좋은 코드가 좋은 코드다
- NSManagedObjectModel
- delegate
- coredata
- Swift3
- RunLoop
- HTTP
- Block
- NSManagedObject
- AWS
- 꺼내먹어요
- Swift 3.0
- ios
- EffectiveObjectiveC
- applicationWillResignActive
- dictionary
- Swift 3
- Swift
- Swfit
- optional
- string
- docker
- thread
- Arc
- CIImage
- NSManagedObjectContext
- CGImage
- set
- UIView
- workerThread
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |