I\'m getting an EXC_BAD_ACCESS (or a malloc error) on the following line of code:
NSLog(@\"Points:\");
Which makes zero sense to me, as it
there are % in string, replace % to %%
NSLog([message stringByReplacingOccurrencesOfString:@"%" withString:@"%%"]);