Evening all,
Why does my NSString object not return RetainCount as 1:
NSString *test;
test = @"test";
NSLog(@" retain count is %d", [test retainCount]);
This prints
retain count is 2147483647
Shouldn't retain count be 1 as test is a string object?
Anyone got any ideas why this is happened.