How to Ditch Storyboards and Nibs Forever
It’s an ongoing debate between iOS devs. Do I layout my UI with storyboards and nibs or not? I finally found one solution that let me ditch them forever.…
It’s an ongoing debate between iOS devs. Do I layout my UI with storyboards and nibs or not? I finally found one solution that let me ditch them forever.…
Table driven tests give you more test coverage for less lines of code. Let’s explore how to write them in Swift…
Don’t use NSNotifcationCenter
. Most of the time it’s a HUGE mistake. It’s okay to use the center to respond to iOS driven events, like UIKeyboardDidShow
Notification. But don’t use it to wire up message passing in your own code…