Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created August 18, 2013 18:37
Show Gist options
  • Save pbrewczynski/6263214 to your computer and use it in GitHub Desktop.
Save pbrewczynski/6263214 to your computer and use it in GitHub Desktop.
#import "MyQuiz.h"
#import "QuoteQuizViewController.h"
@interface QuoteQuizViewController ()
@end
@implementation QuoteQuizViewController
- (void)viewDidLoad
{
[super viewDidLoad];
self.quizIndex = 999;
self.quiz = [[MyQuiz alloc] initWithQuiz:@"quotes"];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment