You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to suggest this run time script for enhancing xcode ide, the script scans all storyboards in project, and builds a map of all storyboards, and for each the all the registered view controllers.
The script use the data to create a api which the developer can then use to access and initialize view controllers from the storyboards in a compiler friendly way.
example of the api: let vc: UIViewController = R.storyboard.Main.helloworld1^ // where the '^' character initialize the controller
I already use this project in a full fledged app, and it work flawlesly for me, I hope others would benefit this script as I did 😊
On the same breath I highly recommend adding ios-res-tool to the list as well, it served to me as a guideline on how to auto generate the api, and it's awesome anyways!
The text was updated successfully, but these errors were encountered:
Hi, I would like to suggest this run time script for enhancing xcode ide, the script scans all storyboards in project, and builds a map of all storyboards, and for each the all the registered view controllers.
The script use the data to create a api which the developer can then use to access and initialize view controllers from the storyboards in a compiler friendly way.
example of the api:
let vc: UIViewController = R.storyboard.Main.helloworld1^ // where the '^' character initialize the controller
I already use this project in a full fledged app, and it work flawlesly for me, I hope others would benefit this script as I did 😊
On the same breath I highly recommend adding ios-res-tool to the list as well, it served to me as a guideline on how to auto generate the api, and it's awesome anyways!
The text was updated successfully, but these errors were encountered: