Skip to content

Instantly share code, notes, and snippets.

@justin
Created April 4, 2012 23:29
Show Gist options
  • Save justin/2306549 to your computer and use it in GitHub Desktop.
Save justin/2306549 to your computer and use it in GitHub Desktop.
Assert on initializers you aren't using
- (id)initWithDocument:(ELDocument *)document
{
if ((self = [super initWithNibName:nil bundle:nil]))
{
// Do your stuff in here.
}
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
NSAssert(NO, @"Use ELEditingViewController' initializer `initWithDocument:` instead");
return nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment