반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let view = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
view.backgroundColor = .orange
self.view.addSubview(view)
UIView.animate(withDuration: 0.75, delay: 0.5, options: .curveEaseIn) {
view.frame.origin.x = 200
view.frame.origin.y = 200
} completion: { finished in
view.backgroundColor = .blue
}
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UIAlertController 경고창 예제 (0) | 2022.08.21 |
---|---|
[iOS, Swift] UIView 위치 및 사이즈 설정 (extension) (0) | 2022.08.21 |
[iOS, Swift] UIView 흔들림 효과 주기 (0) | 2022.08.21 |
[iOS, Swift] ImageView 애니메이션 구현하기 (0) | 2022.08.21 |
[iOS, Swift] ImageView ContentMode 특징 (Scale to Fill, Aspect Fit, Aspect Fill) (0) | 2022.08.21 |