본문 바로가기

전체 글138

Existential Type (any) Existential Type이란 기존 Protocol을 통한 추상 타입을 타입으로서 사용하는 경우를 말한다. 여태껏 사용했던 타입으로서의 프로토콜이 Existential Type이다. any 키워드가 등장한 배경은 컴파일 시점에 프로토콜을 채택하고 있는 명확한 타입을 모르므로 Dynamic Dispatch를 사용하여 진행하는데, 이는 컴파일 시점에 프로토콜을 참조하고 있는 객체를 컨테이너에 저장(Boxing values of protocol types)하고 테이블을 참조하여 실행되어야 할 특정 기능을 찾는 데에 비용을 소모하기 때문에 무분별한 사용을 줄이고자 any 키워드를 붙여 개발자에게 명시적으로 보여주기 위함이다.In addition to heap allocation and reference co.. 2025. 3. 2.
[Swift] Opaque Types Opaque Types불투명한 타입으로, 메서드 및 변수, 파라미터등의 타입을 감추는 방법을 의미한다반환되는 구체 타입은 구현부에서 알 수 있으며, 외부에선 감춰진 타입만을 알 수 있다. 그래서 역제네릭으로 불리기도 한다.some + 프로토콜 (some Testable) 문법으로 사용컴파일 타임에 어떤 타입이 반환될지 결정함컴파일러는 구체 타입을 알기 때문에 타입 보존이 가능제네릭은 반대로 외부에서 구체 타입을 넣어주고, 내부에선 모른다protocol Testaa { func test(t: T)} class Tess { func test(t: "TT") { print(t) }}Protocol Type과 비교Protocol Type의 경우 반환되는 프로토콜 타입을 채택한다면 .. 2025. 2. 22.
[Swift] VisionKit OCR VisionKit을 사용한 OCR 기술 구현이미지 분석 등의 과정을 처리할 핸들러 구현 let handler = VNImageRequestHandler(cgImage: cgImage, options: [:])// Request 클로저 내부에서 해야할 동작 구현let request = VNRecognizeTextRequest { request, error in }  VNImageRequestHandler내 사용되는 VNImageOption은 분석할 이미지의 추가적인 정보를 제공할 수 있음 VNImageOption.cameraIntrinsics:이미지가 촬영된 카메라의 내부 매개변수(camera intrinsic matrix)를 제공예를 들어, 얼굴이나 물체의 깊이, 크기 등을 분석할 때 카메라 렌즈의 초점.. 2024. 10. 7.
[Swift] UITableView, UICollectionView Last IndexPath TableView 마지막 인덱스 private extension UITableView { func lastIndexPath() -> IndexPath { let section = max(numberOfSections - 1, 0) let row = max(numberOfRows(inSection: section) - 1, 0) return IndexPath(row: row, section: section) } } CollectionView 마지막 인덱스 private extension UICollectionView { func lastIndexPath() -> IndexPath { let section = max(numberOfSections - 1, 0) let row = max(numberOfItem.. 2023. 12. 5.
[Concurrency] Sendable Swift Concurrency의 등장으로 새롭게 정의된 프로토콜인 Sendable은 Concurrency 환경에서 Data Race를 방지하기 위해 등장했다. Sendable 프로토콜은 Concurrency 환경에서 데이터를 안전하게 공유할 수 있다라고 컴파일러에게 알려주는 역할을 한다. Although this protocol doesn’t have any required methods or properties, it does have semantic requirements that are enforced at compile time. Sendable을 채택할 수 있는 상황은 아래와 같다. 1. Actor 아직 깊게 공부해보진 않았지만, 마찬가지로 Concurrency에서 등장한 Actor는 Send.. 2023. 12. 5.
[RxSwift] flatMapLatest (feat. flatMap) 2022.08.09 - [iOS/RxSwift] - [RxSwift] map vs flatMap [RxSwift] map vs flatMap 걍 가끔 헷갈려서 정리한다 map Rx 공식문서에서 말하는 map은 다음과 같다. 각 항목에 함수를 적용하여 Observable에서 내보내는 항목을 변환합니다. 얘는 간단하다. public func map (_ transform: @escaping.. limjs-dev.tistory.com flatMap 보고오십쇼 flatMap과 비교하며 알아보자 flatMap example(of: "flatMap") { let disposeBag = DisposeBag() // 1 let ryan = Student(score: BehaviorSubject(value: 80)) l.. 2022. 8. 9.