일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리팩토링
- 애니메이션
- uitableview
- ribs
- collectionview
- 스위프트
- swiftUI
- 리펙토링
- ios
- clean architecture
- combine
- map
- Observable
- Clean Code
- MVVM
- uiscrollview
- 클린 코드
- UICollectionView
- Human interface guide
- Xcode
- HIG
- swift documentation
- UITextView
- SWIFT
- 리펙터링
- Refactoring
- rxswift
- Protocol
- tableView
- RxCocoa
- Today
- Total
목록오픈소스 까보기 (2)
김종권의 iOS 앱 개발 알아가기
RxSwift의 스트림 처리 RxSwift를 사용할 때 보통 Observable 인스턴스를 .subscribe하여 onNext, onError, onCompleted로 처리가 가능 RxSwift는 위에서 아래로 stream 형태로 비동기 처리를 코드상으로는 순서대로 눈에보기 쉽게 처리가 가능 API.download(file: "http://www...") .subscribe(onNext: { data in // Append data to temporary file }, onError: { error in // Display error to user }, onCompleted: { // Use downloaded file }) 이번 포스팅 글에서 RxSwift의 Observable과 Observer 구현부..
* foundation의 AttributedString.swift Github 주소 참고 AttributedString.swift 구현부 * NSAttributedString 개념은 이전 포스팅 글 참고 AttributedString은 Sendable을 따르고 있으므로 동시성 처리에 안전 내부적으로 _guts를 가지고 있는데 guts는 core라는 의미 // AttributedString.swift @dynamicMemberLookup @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *) public struct AttributedString : Sendable { internal var _guts: Guts internal init(_ guts: Guts) { _..