Hi, I'am setting the text of labels with the content of NSMutableString_s which are objects of a NSMutableDictionray ... the problem that all things work fine when i load the page for two times (so i push ,after i pop...) and with the third push the program can't read the content of one of the NSMutableString_s of the NSMutableDictionary..so when it turns to the step of setting the value of the UILabel it didn't find the value...
there is the code where the exception appear:
- (void)viewDidLoad{
[super viewDidLoad];
NSMutableDictionary *item=[days objectAtIndex:0];
NSString *title1=[item objectForKey:@"week_day"];
name1.text=title1;
[title1 release];