Give your simulator superpowers

RocketSim: An Essential Developer Tool
as recommended by Apple

Optional protocol methods in Swift

In Swift it's kind of unsupported to implemented optional protocol methods. You can, which is ugly, use the @objc syntax: @objc protocol MyProtocol { optional func doSomething(); } class MyClass : MyProtocol { // no error } Another disadvantage here is that structs are unsupported, as you're bridging for Objc ...
Swift

The start of a new blog

Hi there! After thinking a lot of starting my own blog, I've finally made the decision to create one! As iOS developer for my job I found myself experiencing a lot of problems, writing solutions and figuring out what's the best way to create this UI. Many times these are ...
Swift