StateView v2.0 Release Notes
Release Date: 2016-09-14 // over 8 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)
, andviewDidUpdate()
to run code at special points in the lifetime of your view.viewDidInitialize()
is called when yourStateView
subclass is initialized and has received its initialstate
andprops
.viewWillUpdate(newState, newProps)
is called after yourStateView
subclass receives new values instate
orprops
and is about to update its subviews. This method is not called when your view is initialized.viewDidUpdate()
is called after yourStateView
has updated its subviews after receiving new values instate
orprops
. This method is not called when your view is initialized.
- โก๏ธ You can now use