05-14 04:14
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 예금
- java
- audio record
- 청약
- ndkVersion
- 3rd framework
- kotlin
- Data Binding
- gradle
- 고금리
- 새마을금고
- CHAT GPT
- RETROFIT
- ChatGPT
- Android
- MG더뱅킹정기예금
- BindingAdapter
- ndk r24
- 사전청약
- Android Studio
- KB
- ios
- Andorid
- 달러예금
- 용산 호반써밋 에이디션
- arm-linux-androideabi
- Mac
- Swift
- JetPack
- EditText
Archives
- Today
- Total
pear
[iOS]DispatchQueue.global 본문
apple devloment
https://developer.apple.com/documentation/dispatch/dispatchqos
// 유저와 직접 응답형 : UI관련
DispatchQueue.global(qos: .userInteractive)
// 비동기 처리 : 내부 데이터베이스 조회 등
DispatchQueue.global(qos: .userInitiated)
// 일반적인 작업
DispatchQueue.global()
// ProgressIndicator와 함께 지속적으로 사용되는 작업 : 지속적인 데이터 feed, Networking
DispatchQueue.global(qos: .utility)
// 사용자가 직접적으로 인지하지 않는 부분 : 데이터베이스 유지, 데이터 정리 등 - 속도보다는 에너지 효율성 중시
DispatchQueue.global(qos: .background)
// 사용하지 않음 absence of a quality-of-service API
DispatchQueue.global(qos: .unspecified)
'iOS > swift' 카테고리의 다른 글
[iOS]Swift Value Memory Study (0) | 2023.06.16 |
---|---|
[iOS] record(swift) 응용 (0) | 2023.06.16 |
[swift]3rd part framework - Undefined symbols for architecture (0) | 2022.05.27 |
iOS issue - Error creating LLDB target at path (0) | 2022.01.20 |
iOS 3rd framework bit code (0) | 2021.11.15 |