Skip to content

Instantly share code, notes, and snippets.

@jchudzynski
Created January 13, 2014 22:27
Show Gist options
  • Select an option

  • Save jchudzynski/8409330 to your computer and use it in GitHub Desktop.

Select an option

Save jchudzynski/8409330 to your computer and use it in GitHub Desktop.
Deck.m used to show how to parse XML documents.
#import "Deck.h"
@implementation Deck
-(instancetype)init{
if(self= [super init]){
_questions = [NSMutableArray new];
}
return self;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment