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
- uitableview
- Xcode
- Refactoring
- HIG
- swiftUI
- Clean Code
- 애니메이션
- 리펙터링
- RxCocoa
- map
- UITextView
- 스위프트
- combine
- MVVM
- Human interface guide
- clean architecture
- collectionview
- swift documentation
- ios
- SWIFT
- 리펙토링
- 리팩토링
- uiscrollview
- 클린 코드
- rxswift
- ribs
- Observable
- tableView
- Protocol
- UICollectionView
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