Skip to content

Instantly share code, notes, and snippets.

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