Skip to content

Instantly share code, notes, and snippets.

@sendoa
Forked from JaviSoto/gist:5906004
Created July 3, 2013 08:28
Show Gist options
  • Save sendoa/5916356 to your computer and use it in GitHub Desktop.
Save sendoa/5916356 to your computer and use it in GitHub Desktop.
Set the designated initializer at compile time
#define MSDesignatedInitializer(__SEL__) __attribute__((unavailable("Invoke the designated initializer `" # __SEL__ "` instead.")))
// Sample usage:
- (id)initWithObject:(id)object;
- (id)init MSDesignatedInitializer(initWithObject:); // <- This even gets auto-complete.
// Now calling init on this class would throw a warning.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment