iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다. UIView.animate(withDuration: 1.5, delay: 0, options: [.repeat, .autoreverse], animations: { [self] in view.transform = CGAffineTransform(translationX: 0, y: 14) }, completion: nil) animations 옵션에서 view의 transform 메소드를 통해 View를 위로 이동하게끔하고 options의 repeat과 autoreverse 효과를 주어 위아래 이동을 반복하게끔 할 수 있다. view.transform = CGAffineTransform(translationX: 0,..