Code Monkey home page Code Monkey logo

Comments (7)

hallamager avatar hallamager commented on September 17, 2024 1

That's perfect thank you!

from viewanimator.

marcosgriselli avatar marcosgriselli commented on September 17, 2024

Hi @hallamager you want to run an animation when the ViewController is displayed right? The best way to do this is to force the tableView to reload (or load initially in this case as at that point the cells have not been loaded yet) and then run your animation. I just tested this code on the example app and it works:

override func viewDidLoad() {
    super.viewDidLoad()
    tableView.reloadData()
    let animations = [AnimationType.from(direction: .bottom, offset: 30.0)]
    tableView.animateViews(animations: animations)
}

from viewanimator.

hallamager avatar hallamager commented on September 17, 2024

from viewanimator.

marcosgriselli avatar marcosgriselli commented on September 17, 2024

@hallamager please check #23, UICollectionView cell reloading works different from UITableView so you have to implement a workaround for it.

from viewanimator.

hallamager avatar hallamager commented on September 17, 2024

Bit new to swift, this is confusing me a little. I'm trying to do this for viewDidLoad again. This is what i've got;

self.collectionView.performBatchUpdates({ self.collectionView.animateViews(animations: self.animations, delay: 0.3) }, completion: nil)

from viewanimator.

marcosgriselli avatar marcosgriselli commented on September 17, 2024

Right that looks ok but make sure to call collectionView.reloadData() before that to make sure the cells are loaded.

from viewanimator.

hallamager avatar hallamager commented on September 17, 2024

Same problem still occurs.

I've got;

self.collectionView.reloadData() self.collectionView.performBatchUpdates({ self.collectionView.animateViews(animations: self.animations, delay: 0.3) }, completion: nil)

from viewanimator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.