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
Old question but in Swift you'll get this issue if you are logging an encoded URL which contains '%' - For example:
NSLog("My long Encoded URL: \(myLongUrlVar)")
Instead, it will work with params:
NSLog("My long Encoded URL: %@", myLongUrlVar)