I created a class to download data from a web service. And I take the following steps to test:
Instantiate the download class in viewDidLoad of ViewController and then execute the method, as in the code below:
- (void)viewDidLoad {
[super viewDidLoad];
GDRequestURL* getData = [[GDRequestURL alloc]init];
[getData getDataFromURL];
// Aqui instancio um objeto para receber o retorno.
NSMutableArray* restultado = [[NSMutableArray alloc]init];
//NEste ponto faço a execução para receber o retorno dos dados.
restultado = [getData retornaResultado];
}
But the return is nil.