일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스위프트
- Clean Code
- rxswift
- 애니메이션
- 클린 코드
- 리팩토링
- clean architecture
- 리펙터링
- uiscrollview
- RxCocoa
- map
- SWIFT
- ribs
- collectionview
- ios
- combine
- tableView
- HIG
- UITextView
- MVVM
- Xcode
- Human interface guide
- UICollectionView
- Observable
- uitableview
- swift documentation
- Refactoring
- swiftUI
- 리펙토링
- Protocol
- Today
- Total
목록iOS Combine (SwiftUI) (19)
김종권의 iOS 앱 개발 알아가기
목차) Combine - 목차 링크 Combine과 RxSwift의 주요 차이점 Combine과 RxSwift 모두 Publisher, Subscriber하는 컴포넌트가 있고, stream을 만들어서 그 stream안에 operator를 사용하여 이벤트를 처리하는 형태 Combine은 RxSwift보다 성능이 훨씬 향상 ex) 성능 테스트 map, filter, flatMap 등을 결합한 연산자 시간과 메모리 사용량 비교 // 출처: https://medium.com/@M0rtyMerr/will-combine-kill-rxswift-64780a150d89 import XCTest import Combine import RxSwift final class PlaygroundTests: XCTestCase ..
목차) Combine - 목차 링크 Combine async 작업들을 이벤트 처리 연산자로 결합하여 처리하는 방법 선언적인 프로그래밍 형태로 사용 Stream하나를 만들고 그 Stream에 필요한 operator를 덫붙여서 사용하는 선언적인 프로그래밍 방식 // 선언형 프로그래밍인 Combine 예제 코드 $username .debounce(for: 0.1, scheduler: RunLoop.main) .removeDuplicates() .map { $0.count >= 2 } .assign(to: \.valid, on: self) .store(in: &cancellableSet) 선언적인 프로그래밍이 되면서, 클로저를 이용한 콜백지옥에서 벗어날 수 있는 장점이 존재 Combine을 사용하면 이벤트 처리..
Combine 기본 개념 Combine이란? Combine 훓어보기 - RxSwift와의 차이점 ObservableObject @Published, objectWillChange Cancellable (AnyCancellable) Publisher (AnyPublisher, Published) Publisher 생성 연산자 (Just, Sequence, Future, Fail, Empty, Deferred, Record) Subscriber (AnySubscriber) Subject (CurrentValueSubject, PassthroughSubject) Scheduler (receive(on:), subscribe(on:), delay(for:scheduler:)) Combine 연산자 Operato..