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
The way that you get rid of this error is to go into your projects build settings. Search for automatic reference counting. Once you find it set the value to "NO"
Change
SBJSON *json4 = [[SBJSON new] autorelease];
to
SBJSON *json4 = [SBJSON new];
This will allow you to leave automatic reference counting intact.