https://developer.apple.com/documentation/uikit/uiactivityindicatorview
"A view that shows that a task is in progress."
작업이 진행중임을 보여주는 뷰입니다.
@MainActor class UIActivityIndicatorView : UIView
액티비티 인디케이터가 startAnimating()
과 stopAnimating()
메소드를 호출해서 애니메이션 처리할 때 제어할 수 있습니다. 애니메이션이 멈출 때 액티비티 인디케이터를 자동으로 숨기려면 hidesWhenStopped
속성을 true
로 설정해야 합니다.
color
속성을 사용해서 액티비티 인디케이터의 색상을 설정할 수 있습니다.
인터페이스에서 단일 이미지 혹은 애니메이션 처리된 이미지의 연속을 표시하는 객체입니다.
https://developer.apple.com/documentation/uikit/uiimageview
https://velog.io/@panther222128/UIImageView
하나 혹은 하나 이상의 값 집합을 보여주기 위해 돌아가는 휠 혹은 슬롯 머신과 유사한 것을 사용하는 뷰입니다.
https://developer.apple.com/documentation/uikit/uipickerview
https://velog.io/@panther222128/UIPickerView
작업의 진행을 시간에 걸쳐 표시하는 뷰입니다.
https://developer.apple.com/documentation/uikit/uiprogressview
https://velog.io/@panther222128/UIProgressView