Swift 4 solution is below
import UIKit import PlaygroundSupport let view = UIView(frame: CGRect(x: 0, y: 0, width: 400, height: 400)) view.backgroundColor = #colorLiteral(red: 1, green: 0.5763723254, blue: 0, alpha: 1) PlaygroundPage.current.liveView = view UIView.animate(withDuration: 2.5, animations: { view.layer.cornerRadius = 40 }, completion: { _ in UIView.animate(withDuration: 0.5, animations: { view.layer.cornerRadius = 0 }) })
Durul dalkanat
source share