Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class ViewController: UIViewController {
  2. let vista = View()
  3. override func viewDidLoad() {
  4. super.viewDidLoad()
  5.  
  6. view.Animacion { [weak self] in
  7. self?.animacionFin()
  8. }
  9. }
  10. private func animacionFin() {
  11. print("La animación ha finalizado!")
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement