Possible Duplicates:
NSString retain Count
Objective C NSString* property retain count oddity
When to use -retainCount ?
Why does this code show the retain value greater than 1? And why is it 2147483647?
NSString *data22 = [[NSString alloc] initWithString:@"fsdfsfsdf"];
int a = [data22 retainCount];
NSLog(@"retain count 1== %d ====" ,a);
The output of the above code is
retain count 1== 2147483647 ====