이재용의 iOS

15 Posts (1 - 5)

Subscription Mechanism in Combine

    2024년 7월 11일 • ☕️ 1 min read

    Publishers by nature are inert entities. When the subscriber subscribes to a publisher the publisher instantiates the subscription and start…

    Swift Memory 주소 확인 방법

      2024년 7월 11일 • ☕️ 2 min read

      Swfit 메모리 주소 확인 방법 struct, heap 주소 범위 확인하기 앱을 실행하면 그 앱에 해당되는 메모리를 할당해주어야 하는데, 이 메모리의 정보를 알려주는 명령어는 vmmap(virtual memory map)이다. 우선 앱의 PID…

      Publisher

      2024년 5월 10일 • ☕️ 1 min read

      DataStream이나 event를 생성(발행)하고 구독자에게 전달하는 역할을 하는 객체

      AnyPublisher

      2024년 4월 12일 • ☕️ 1 min read

      프로토콜 Publisher을 준수하는 어떤 Publisher를 추상화하여 해당 Publisher의 구체 타입을 소거하는 Publisher