I am devloping an application "view based" and I used Table View in it
I was able to view all the strings in the table but not any variable
- (void)updateView{
[listData dealloc];
listData = [[NSMutableArray alloc] init];
NSString *testString = forecast.routeNo;
[listData addObject:@"first"];
[listData addObject:[NSString stringWithFormat:@"%@", testString]];
NSLog(@"this is the forecast routeNo = %@", testString);
}
the value of the string instially null but it is changing which i can see it debugger, but not in the table
so i can see the correct value in the debugger but when ever it is updated with the new value it doesn't update in the table view
so my question is it enough to change the values in the array or should i call some method or is it something else
Thanks