Relative Content

Tag Archive for cocoa

How should I expand Jenkins to help me release?

Pushing new Sparkle releases of our internal apps is a pain. I have to make the build, make the release notes file, sign the .zip with the private key, and add a new entry to the appcast file tying everything together.

NSException in init when having a custom designated initialiser?

I have a custom View Controller that is a subclass of UIViewController that requires a data object to be set up properly. Without this object, showing the VC doesn’t make any sense.
So I created a custom initialiser that requires this object to be passed as an parameter/argument.
There is also no “default” data object, so there is no point for me to override the inherited init, and implement passing this default data object internally from init to custom init.