Please consider the code
NSMutableString *str=[[NSMutableString alloc] initWithString:@"hello"];
NSLog(@"reference count is %i",[str retainCount]);
[str release];
NSLog(@"reference count is %i",[str retainCount]);
I am getting "refernce count is 1" for both of these NSLog statements...even after release i am getting 1....However if I write str=nil below [str release] i get 0(which is understood)...could anyone please advise...
thanks...