Untitled

기존의 CarMakingContentView 타입

class CarMakingContentView: UIView

따라서 다음과 같이 **Generic**을 사용하여 CollectionView의 Section 타입을 유연하게 사용하기로 결정하였습니다.

class CarMakingContentView<Section: CarMakingSectionType>: UIView

새롭게 알게된 사실

extension CarMakingContentView: UICollectionViewDelegateFlowLayout {

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        let height = CGSize(width: self.frame.width, height: collectionView.frame.height - Constants.progressBarHeight)
        return height
    }
}

문제

  1. **Objective-C**와의 상호 작용을 위한 프로토콜을 제네릭 클래스에서 확장을 통해 구현하려는 경우 발생하는 문제

해결 방법

  1. @objc 프로토콜 문제 해결: 제네릭이 아닌 별도의 클래스 또는 구조체를 사용하여 델리게이트를 위임하면, Objective-C 호환 프로토콜을 사용하는데 문제가 없을 것입니다. 제네릭 클래스와 Objective-C 프로토콜의 상호 작용은 복잡하기 때문에, 이를 분리하여 문제를 해결

예제 코드

class CarMakingContentView<Section>: UICollectionView {
    let flowLayoutDelegate = FlowLayoutDelegate()

    // 나머지 코드 ...

    init() {
        super.init(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
        delegate = flowLayoutDelegate
    }
}

class FlowLayoutDelegate: NSObject, UICollectionViewDelegateFlowLayout {
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        let height = CGSize(width: collectionView.frame.width, height: collectionView.frame.height - Constants.progressBarHeight)
        return height
    }
}

여기서 FlowLayoutDelegateUICollectionViewDelegateFlowLayout를 담당하고, 제네릭 클래스 CarMakingContentView와 Objective-C 프로토콜 간의 충돌을 방지합니다.