Releases: thoughtbot/Perform
Releases · thoughtbot/Perform
2.0.2
The Seat's Edge
This release updates Perform to compile on the latest version of Xcode, including the Xcode 10 beta.
2.0.0
1.0.0
This is the first public release of Perform.
- Use the
perform(_:prepare:)method to configure a segue's destination view controller right where it's triggered. No more massiveprepareForSeguemethod. - Define your destination view controller's type statically using the
Segue<Destination>. Perform automatically casts the destination view controller for you before calling yourpreparefunction. - If the destination view controller is a container (e.g.,
UINavigationController), Perform searches the view controller hierarchy and locates a child view controller with the matching type. - Share dependencies between tabs in a
UITabBarControllerby using theconfigureViewControllersextension.