I\'ve been trudging through some code for two days trying to figure out why I couldn\'t fetch a global NSMutableArray variable I declared in the .h and implemented in .m and
Just make a global variable. Global means outside any scope.
NSMutableDictionary *gDictionary; @implementation ... @end