iOS/Library(3)
-
[iOS/Swift] RxSwift에서 flatMap 사용 시 스트림 종료 문제와 해결 방법
🧸 문제flatMap에서 에러 발생 시 스트림이 종료되는 현상RxSwift에서 flatMap이나 flatMapLatest를 사용할 때, 내부 스트림에서 에러가 발생하면 전체 스트림이 종료되는 문제가 있다. 예를 들어, 아래 코드를 보자.func transform(input: Input) -> Output { let responseLogin = input.buttonDidTap .do(onNext: { type in print("🟢 OAuth 실행 시작: \(type)") }) .withUnretained(self) .flatMap { owner, type in owner.oauthService.execute..
2025.04.04 -
[iOS/Swift] RxSwift 기본 개념
👉 RxSwift 란? ‘RxSwift is a library for composing asynchronous and event-based code by using observable sequences and functional style operators, allowing for parameterized execution via schedulers. By Marin Todorov. ‘RxSwift — Reactive Programming with Swift.’ 관찰 가능한 시퀀스와 함수 스타일 연산자를 사용하여 비동기 및 이벤트 기반 코드를 구성하는 라이브러리이다. 새로운 데이터에 반응하며 순차적으로 처리하게 함으로써 비동기 프로그램을 쉽게 하도록 도와준다. ✔️ RxSwift 사용하는 이유 ? 비동기..
2023.03.05 -
[iOS/Swift] pod 설치방법
🧸 시작 스냅킷은 코드베이스이기 때문에 스토리보드가 필요없다. 스토리보드 없는 프로젝트 세팅을 먼저 해주고 시작한다. 2022.08.14 - [PROJECT/iOS] - [iOS/Swift] 스토리보드 없는 프로젝트 세팅 [iOS/Swift] 스토리보드 없는 프로젝트 세팅 프로젝트 생성 Main Interface 부분 삭제 version 14.2 Main 스토리보드 삭제 Info.plist 파일에서 스토리보드 삭제 메인 VC 설정 SceneDelegate 파일에 가서 설정한다 func scene(_ scene: UIScene, willConnectTo session: UISce nlestory.tistory.com 🧸 터미널을 열고 자신의 프로젝트가 있는 폴더로 이동한다. cd 원하는_경로 cd 명령어..
2023.02.28