Ask HN: Where can I learn making iOS/mac apps with Swift without storyboards? 8 points by walclick 7y ago ↗ HN I prefer to do the UI programmatically but almost all the tutorials and examples I found so far use storyboards. And those who don't, are just small examples...
[–] melling 7y ago ↗ https://github.com/melling/ios_topics/blob/master/README.mdI usually use the first ViewController in Main.storyboard.Here's a no Nib example:https://github.com/melling/ios_topics/tree/master/NoNibAllCo...Usually, you'll just have lines like this: let vc = ViewController() self.navigationController?.pushViewController(vc, animated: true) Make sure your first controller is embedded in a NavigationController or that push won't work.
2 comments
[ 3.4 ms ] story [ 15.5 ms ] threadI usually use the first ViewController in Main.storyboard.
Here's a no Nib example:
https://github.com/melling/ios_topics/tree/master/NoNibAllCo...
Usually, you'll just have lines like this:
Make sure your first controller is embedded in a NavigationController or that push won't work.