2024-06-07 00:00

[Swift 5.10] Nested Protocol With RIBs

Swift에서는 Protocol을 제외한 대부분의 타입은 타입 내부에서 다른 타입을 정의할 수 있었습니다.
struct Parent {
class ChildClass {} // ✅
struct ChildStruct ...

댓글