marcosgriselli / ViewAnimator

ViewAnimator brings your UI to life with just one line

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

When/Where to use it?

rawnly opened this issue · comments

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..

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!