Closed rawnly closed 5 years ago
Hi! I'm pretty new in swift and I didn't exactly understood where to call the animation in an UITableView..
I want to reproduce something like this
I've tried calling it inside viewDidLoad but nothing happens, the same in viewWill/DidAppear..
viewDidLoad
viewWill/DidAppear
That's my code:
override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) self.hero.isEnabled = false self.navigationController?.hero.isEnabled = false tableView.reloadData() let cells = tableView.visibleCells(in: 0) let animation = AnimationType.from(direction: .bottom, offset: 30.0) UIView.animate(views: cells, animations: [animation]) }
Sorry, big mistake. Awesome lib!
Hi! I'm pretty new in swift and I didn't exactly understood where to call the animation in an UITableView..
I want to reproduce something like this
I've tried calling it inside
viewDidLoad
but nothing happens, the same inviewWill/DidAppear
..That's my code: