Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
(IBAction)adicionarPastas:(id)sender {

    AbreBrowser *abre = [[AbreBrowser alloc] init];

    NSMutableArray *arquivosRecebe = [[NSMutableArray alloc] initWithArray:[abre abreBrowser]];
    [abre release];

    [arquivos addObjectsFromArray:arquivosRecebe];    
    [arquivosTableView reloadData];

    [arquivosTableView setDataSource:self];
}

well, arquivos is declared on this files header as

NSMutableArray *arquivos;

[abre abreBrowser] indeed returns a NSArray;

my problem is:

[arquivos addObjectsFromArray:arquivosRecebe]; 

doesnt work. i tried also addObject and it gives me the same result= nothing.

when i feed arquivos like this:

arquivos = [abre abreBrowser]; 

it works. but when i do a [arquivos addObject:Object] or [arquivos addObjectsFromArray:NSArray] it doesnt feeds my NSMutableArray arquivos.

can someone tell me what am i doing wrong?

thanx in advance

share|improve this question

2 Answers

up vote 6 down vote accepted

It appears that you are not allocating arquivos anywhere in your object's initialization before actually sending the addObjectsFromArray message to it.

share|improve this answer
1  
oh my god, you`re right, thank you. after allocating it, it worked. how could i miss that???? i deserve a slap on my face. god.... – Crofuncio May 15 '11 at 22:37
1  
:-) The answer was in your question itself; you said - "when i feed arquivos like 'arquivos = [abre abreBrowser];' it works." – sinha May 16 '11 at 3:02

So why don't you use that which works? arquivos = [abre abreBrowser];

Also, it seems you should switch these statements?

   [arquivosTableView reloadData];
   [arquivosTableView setDataSource:self];

To this:

   [arquivosTableView setDataSource:self];
   [arquivosTableView reloadData];
share|improve this answer
i didnt use the way that works because i want to keep adding objects into the NSMutableArray, and using the way that works was not possible. Thanks for your help too, the previous answer solved my problem, but i`ll take your sugestion and invert those lines. – Crofuncio May 15 '11 at 22:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.