Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created August 18, 2013 17:28
Show Gist options
  • Save pbrewczynski/6262849 to your computer and use it in GitHub Desktop.
Save pbrewczynski/6262849 to your computer and use it in GitHub Desktop.
- (id)initWithQuiz:(NSString*)plistName
{
self = [super init];
if (self)
{
NSString *plistCatPath = [[NSBundle mainBundle] pathForResource:plistName ofType:@"plist"];
self.movieArray = [NSMutableArray arrayWithContentsOfFile:plistCatPath];
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment