ios개발/개념 정리

<스위프트> typealias

studying develop 2020. 3. 5. 19:07

<https://ginjo.tistory.com/20>

위에 보면 사용법이 3개인데 밑에 2개는 모르겠어서

 

일단 첫번째 거만 이해했다.

 

1. 내장 유형에 대한 예시

public typealias CurrentLocation = (latitude: Double, longitude: Double)

(latitude : Double, longitude: Double)의 별칭이 CurrentLocation이라 한다.

 

다른 타입에 대한 별칭을 정해주는가 보다.

 

c++로 치면 using이랑 비슷해 보인다.