본문 바로가기

iOS

[iOS] CMTime

CMTime

A struct representing a time value such as a timestamp or duration.

timestamp, duration과 같은 값을 나타내는 구조체

 

CMTime은 보통 이런 형태로 초기화한다.

init(value: CMTimeValue, timescale: CMTimeScale)

CMTimeValue : Int64 (분자)

CMTimeScale: Int32 (분모)

즉, CMTime(value: 100, timescale: 1) 이라면 100초를 나타내는 것이다.

 

'iOS' 카테고리의 다른 글

[iOS] JSON 파일 다루기  (0) 2020.06.15
[iOS] NotificationCenter  (0) 2020.06.14
[iOS] AVFoundation, AVPlayer, AVPlayerLayer  (0) 2020.06.13
[iOS] AVKit, AVPlayerViewController  (0) 2020.06.13
[iOS] Gesture Recognizer  (0) 2020.06.13