목록TCA (11)
HIT해
https://github.com/pointfreeco/swift-composable-architecture GitHub - pointfreeco/swift-composable-architecture: A library for building applications in a consistent and understandable way,A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. - pointfreeco/swift-composable-architecturegithub.com TCA 를 활용한 Binding 처리는 두가지가 존재..
Xcode 업데이트를 한 뒤 해당 오류가 발생해서 앱을 자꾸 멈추게했다. 원인은 바로 @MainActor 가 포함된 코드를 메인 스레드에서 호출하지 않아서 발생하는 문제였다. 나의 경우 TCA run 코드가 백그라운드 스레드에서 실행되어서, 해당 코드를 메인 스레드로 전환해주어야했다. 해결 방법DispatchQueue.main.async를 사용해 메인 스레드에서 UI 상태를 변경하도록 수정해준다, let completionAction = SCNAction.run { node in // UI 업데이트는 메인 스레드에서 실행 DispatchQueue.main.async { self.parent.enable = true }} 이렇게 수정하면 self.parent.enable이 메인..

https://github.com/pointfreeco/swift-composable-architecture/blob/main/Examples/Search/SearchTests/SearchTests.swift swift-composable-architecture/Examples/Search/SearchTests/SearchTests.swift at main · pointfreeco/swift-composable-architectureA library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. - pointfreeco/swift-composa..

깃허브의 Example_Search 예제를 보고 구현을 해보자. struct Peperoni: Decodable, Equatable, Sendable { var message : String}@DependencyClientstruct TmpClient { var regist: @Sendable () async throws -> Peperoni}// 실제 통신 전 테스트extension TmpClient: TestDependencyKey { // 여기서의 Self는 TmpClient static let previewValue = Self() static let testValue = Self()}extension DependencyValues { var tmpClient: Tmp..

이전 포스팅 영상을 본 사람이 있다면 궁금했을 수도 있다. 3D 펫말에 어떻게 텍스트를 집어넣지??? 나도 어떻게 집어넣을까 많은 고민을 했다.. ZStack에 2D 텍스트를 기울여지게 띄워놓을까..? -> 회전했을때 텍스트가 붕 뜨게 될 것이다. 찾아보니 SceneKit에 3D Text를 출력하는 기능이 있었다. ( 아니 이런건 왜 있는거야.. ) 두가지 방법이 있었다.CATextLayer로 구현하기SCNText로 구현하기SCNText가 더 최신 기술이고 메서드 사용도 더 용이해보여 SCNText로 해결해보기로 했다. https://developer.apple.com/documentation/scenekit/scntext SCNText | Apple Developer DocumentationA geom..

ifLet 어디서 많이 보지 않았는가 바로 if let 이랑 비슷한 역할을 한다. 주로 상태가 존재하는 경우에만 특정 뷰의 Modifier를 적용하려고 할때 사용된다.상태의 값이 존재할때만 활성화되고 그렇지 않다면 무시된다. 예시 코드를 보자 1. Reducer@Reducerstruct AlertAndConfirmationDialog { @ObservableState struct State: Equatable { @Presents var alert: AlertState? @Presents var confirmationDialog: ConfirmationDialogState? var count = 0 } enum Action { case alert(PresentationActi..

store.send().finish() vs store.send()store.send():이 코드는 TCA(Typically Composable Architecture)에서 액션을 스토어로 전송한다.기본적으로 이 메서드는 비동기 작업을 시작하고, 해당 액션이 처리되는 동안의 작업을 관리하지 않는다.store.send().finish():finish()는 send(_:) 메서드가 반환하는 Effect의 메서드.finish()는 해당 액션이 완료되었음을 나타내는 신호를 보낸다finish의 역할비동기 작업의 완료 신호:finish()는 비동기 작업이 완료되었음을 나타내는 신호를 보낸다.비동기 효과가 끝났을 때, 상태를 업데이트하거나 후속 작업을 처리하는 데 사용된다.상태 동기화:액션이 완료된 후, 상태가 올바..

전체 소스 코드import ComposableArchitectureimport SwiftUIprivate let readMe = """ This screen demonstrates how changes to application state can drive animations. Because the \ `Store` processes actions sent to it synchronously you can typically perform animations in the \ Composable Architecture just as you would in regular SwiftUI. To animate the changes made to state when an action is sent to th..