[iOS]TimeInterval

Martin Kim·2021년 7월 26일
0

iOS

목록 보기
2/11
post-thumbnail

TimeInterval

  • TimeInterval은 시간(초)의 double형이며 Foundation에 다음과 같이 선언되어있다.
public typealias TimeInterval = Double

typealias?

  • typealias는 기존에 선언되어있는 타입에 별칭을 짓는것이다.
typealias Name = String // String 대신 Name이라는 별칭을 붙였다
typealias Celsius = Double // Double 대신 Celsius라는 별칭을 붙였다
  • typealias는 String, Double, Float, Closure, Class등 모든 타입에 별칭을 짓는 것이 가능하다!

참고: https://developer.apple.com/documentation/foundation/timeinterval ,
https://ginjo.tistory.com/20

profile
학생입니다

0개의 댓글