I trying to make a HTTP request and parse JSON using Stig\'s JSON Library. I\'m getting this error \'autorelease\' is unavailable: not available in automatic reference coun
Change
SBJSON *json4 = [[SBJSON new] autorelease];
to
SBJSON *json4 = [SBJSON new];
This will allow you to leave automatic reference counting intact.