StateView v2.0 Release Notes

Release Date: 2016-09-14 // over 7 years ago
  • 2.0

    ๐Ÿš€ Released on September 15th, 2016

    โž• Additions

    • ๐Ÿ‘ Swift 3 support

Previous changes from v1.3

  • 1.3

    ๐Ÿš€ Released on May 19th, 2016

    โž• Additions

    • โšก๏ธ You can now use viewDidInitialize(), viewWillUpdate(newState, newProps), and viewDidUpdate() to run code at special points in the lifetime of your view.
      • viewDidInitialize() is called when your StateView subclass is initialized and has received its initial state and props.
      • viewWillUpdate(newState, newProps) is called after your StateView subclass receives new values in state or props and is about to update its subviews. This method is not called when your view is initialized.
      • viewDidUpdate() is called after your StateView has updated its subviews after receiving new values in state or props. This method is not called when your view is initialized.