Skip to content

Instantly share code, notes, and snippets.

@twexler
Created February 21, 2012 06:45
Show Gist options
  • Save twexler/1874390 to your computer and use it in GitHub Desktop.
Save twexler/1874390 to your computer and use it in GitHub Desktop.
-(id)initWithNameAndURLs:(NSString*)name xmlURL:(NSURL*)xURL ackURL:(NSURL*)aURL {
if ((self = [super init]) != NULL){
displayName = [name retain];
xmlURL = [xURL retain];
ackURL = [aURL retain];
return self;
}
return nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment