Ive been having problems with reloadData on a TableView. I've finally been able to establish that the variable I use to tell reloadData what to reload is resetting to NULL.
I've added the variable in ClassAppDelegate.h
as follows:
@property (nonatomic, retain) id globalid;
and then synthesized in ClassAppDelegate.m
as follows:
@synthesize globalid;
I then acces the variable in which ever class and method i need to use it with (in the method):
NDSClassAppDelegate *detailControllerAD = [[NDSClassAppDelegate alloc] init];
And then use it in this way to obtain the variable in that method:
NSLog(@"GlobalID at FetchTweets %@", detailControllerAD.globalid);
Why would my variable be resetting on reloadData?