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
- Clean Code
- UITextView
- 리팩토링
- Protocol
- clean architecture
- tableView
- Human interface guide
- 리펙터링
- collectionview
- ios
- RxCocoa
- ribs
- swiftUI
- Refactoring
- map
- UICollectionView
- rxswift
- uiscrollview
- 애니메이션
- combine
- 스위프트
- 리펙토링
- SWIFT
- uitableview
- MVVM
- Xcode
- swift documentation
- Observable
- 클린 코드
- HIG
Archives
- Today
- Total
목록스레드 관리 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Async, Await 사용 방법
Async, Await 이란? 기존에 비동기 처리 방식은 DispatchQueue나 completionHandler를 사용하여 처리했지만, 더욱 편하게 비동기 처리할 수 있는 문법 // DispatchQueue 사용한 비동기 처리 DispatchQueue.global.async { } // completionHandler를 사용한 비동기 처리 let task = URLSession.shared.dataTask(with: url, completionHandler: { data, response, error in }).resume() 비동기 처리란 위와 같이 오래걸리는 작업이 있을 때, 그 작업이 끝나는 것을 기다리지 않고 수행하도록 일을 처리하는 것 이 밖에도 대표적인 비동기 처리 방법에는 RxSwift와..
swift 5 문법
2022. 5. 1. 15:19