Hello Friends,
I am creating a object which is type of NSString by the below method
NSString *str = [[NSString alloc] initWithString:@"aaaaaaaaaaaaaaa"];
NSLog(@"retain count == %d",[str retainCount]);
after that i just printing the retain count value which is
2010-10-29 17:04:03.939 Example [1580:207] retain count == 2147483647
can any one answer this why here log is printing such garbage value
Thanks,