All,
I have numerous arrays in the top of my .m file :
@interface ViewController ()
@property NSArray *allLogos;
@property NSArray *allcontent;
@property NSArray *allpostode;
@property NSArray *allname;
@property NSArray *alladdress;
@property NSArray *alladdress2;
@property NSArray *alllat;
@property NSArray *alllong;
@property NSArray *alllocationsID;
@property NSArray *alllocationsCity;
I need these as global arrays, so all the methods can see these. I have completely forgot how to make sure these NSArrays can be seen in all methods in the .m file. I need to do this because methods update these Arrays and then tableViews and PickerViews need to use them for .count etc. thanks