Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ios
- collectionview
- 클린 코드
- UITextView
- 스위프트
- combine
- Clean Code
- RxCocoa
- SWIFT
- Observable
- MVVM
- UICollectionView
- Xcode
- 리펙터링
- 애니메이션
- uitableview
- Protocol
- rxswift
- clean architecture
- 리팩토링
- ribs
- swift documentation
- HIG
- uiscrollview
- 리펙토링
- swiftUI
- tableView
- Human interface guide
- Refactoring
- map
Archives
- Today
- Total
목록Single Thread (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] DispatchQueue.main.sync와 DispatchQueue.main.async 이해하기, sync를 사용해야하는 상황 (#mainSyncSafe)
DispatchQueue의 sync와 async 동작 main queue와 thread 구분하기 main thread는 single thread이며, 해당 작업을 처리하는곳이 queue async와 sync로 각각 queue에 작업 담기가 가능 DispatchQueue.main.async { // main queue에 async 작업 넣는 곳 } DispatchQueue.main.sync { // main queue에 sync 작업 넣는 곳 } ViewController를 생성하고 DispatchQueue.main 없이 코드를 작성하면 그 코드들은 모두 DispatchQueue.main.sync 큐에서 처리 class ViewController: UIViewController { override func..
iOS 응용 (swift)
2023. 7. 24. 01:51