a is an instance of NSString. I thought if I print a string after releasing it, it will crash the app. Instead it returned proper value assigned to it. My question is, shall we get the value of an object even after releasing it? If not, why I am able to see the value of a, even after it is deallocated?
.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
{
NSString *a;
}
@end
.m
- (void)viewDidLoad
{
[super viewDidLoad];
a=[[NSString alloc]initWithString:@"abc"];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
NSLog(@"String %@",a);
[a release];
NSLog(@"release %@",a);
[a retain];
NSLog(@"retain %@",a);
}
Output:-
2012-08-24 14:15:49.501 a[1176:f803] string abc
2012-08-24 14:15:53.404 a[1176:f803] release abc
2012-08-24 14:15:55.325 a[1176:f803] retain abc
NSMutableStringand it crashes.. :) – Nina Aug 24 '12 at 9:14