iOS Generating an API SDK Being tired of writing all the endpoint and model declarations for a new projects, I went down the rabbit hole of generating an SDK based on a swagger documentation
iOS WatchConnectivity and App Lifetime I'm currently playing around with watchOS and communicating with the main iOS App. The basic and easiest way since watchOS 2 and iOS 9 is to use the WatchConnectivity Framework provided by Apple. It's very simple by using the WCSession instance you can access by WCSession.
Swift Memory leaks by custom delegate Working with delegates is a common practice in the coding world of iOS and macOS developers. Many of the core APIs like UITableView have delegates that are called to execute functions so they can get or pass information to another control. It is easy to use as closures don'