[Swift 3.0] Dispatch Queue 사용하기
GCD 란멀티코어 프로세서를 위한 Thread 프로그래밍을 Mac OS 에서 자동으로관리 / 분배해주는 C Library 이다. Serial Queue let queue = DispatchQueue.init(label: "serialQueue") for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") } } Concurrent Queue let queue = DispatchQueue.init(label: "concurrentQueue", attributes: .concurrent) for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") }..
iOS 개발/Swift
2017. 6. 6. 01:20
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 꺼내먹어요
- workerThread
- Block
- AWS
- string
- RunLoop
- dictionary
- delegate
- thread
- set
- 읽기 좋은 코드가 좋은 코드다
- CIImage
- NSManagedObjectContext
- Swift 3
- NSManagedObjectModel
- Swift3
- docker
- NSManagedObject
- ios
- Arc
- EffectiveObjectiveC
- Swift 3.0
- Swift
- applicationWillResignActive
- UIView
- Swfit
- optional
- coredata
- HTTP
- CGImage
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함