In the traditional MVC model, the View displays the output and lets the Controller know about any actions, such as touch. The Model contains the data while the Controller interacts with both the View and the Controller to render the final output. The View and Controller code can cross paths since you might have to …
Storyboards vs .xibs and SnapKit
Storyboards It allows UI creation to be more visual and easier to use. There are situations in which storyboards should be used: Beginner DeveloperImplementing the Static part of your application "What you see is what you get" Downsides to storyboards are: Merge conflictsWorking with SeguesOverall kinda "messy" (from personal experience) XIBs A single XIB represents …
Simple Xcode / Swift Cheat Sheets
One of the reasons why I chose to become an iOS developer is because of Xcode and the language it uses, Swift. For one, Swift has less syntax than the Java in my experience. Also, Xcode has an amazing interface and I like using storyboard in Xcode. In this blog, I'll share some tips and …