Skip to content

Instantly share code, notes, and snippets.

@petermolnar-dev
Last active January 12, 2017 20:43
Show Gist options
  • Save petermolnar-dev/26ee0fd4441841b158b6ca7f6188d3d6 to your computer and use it in GitHub Desktop.
Save petermolnar-dev/26ee0fd4441841b158b6ca7f6188d3d6 to your computer and use it in GitHub Desktop.
myObject Header
@interface MyObject : NsObject
//1
- (instancetype)initWithTheOtherObjectDoingSomethingElse:(MyOtherObject *)alreadyExisitingObject isNightModeOn:(BOOL)isNightMode NS_DESIGNATED_INITIALIZER;
/**
Removing the default initalizer
*/
- (nullable instancetype)init NS_UNAVAILABLE;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment