Skip to content

New Linking

Latest
Compare
Choose a tag to compare
@rob-brown rob-brown released this 03 May 21:09
· 25 commits to master since this release

Introduced a new workflow. The old workflow only used RBStoryboardLink. It was responsible for all the work by acting as a proxy for the real view controller. In the new workflow, RBStoryboardLink merely provides information for RBStoryboardSegue. RBStoryboardSegue redirects the segue on presentation. This redirection avoids the complexity of UIViewController containment and dereferencing a proxy in methods such as -prepareForSegue:sender:. The new workflow is thanks to @MBulli.