i\'m having a hard time with Xcode; for some reason, it just won\'t let me pass a variable from one view controller class to another. It should work, i was basically just co
A more competent way of doing this is to separate the data from both the viewcontrollers into a model. You will have a separate class(NSObject) called ResultadoModel.h/m. This will be a singleton, so both classes can access the same instance.
You would access the array by doing something like this(in both vcs):
[[[ResultadoModel sharedInstance] array_resultados] propertyOrMethod];
You can search how to create a singleton, it's very simple and very powerful.