I receive an empty value for NSMutableArray and already checked that was filled properly.
What I am doing wrong?
Here is my code:
.h file
@property (nonatomic, retain) NSMutableArray *arrayQuattro;
.m file
@synthesize arrayQuattro;
//when set
self.arrayQuattro = [[NSMutableArray alloc] init];
[self.arrayQuattro addObjectsFromArray:llistaArxius];
//and when is called and receive empty value,
for (int i; i < self.arrayQuattro.count; i++){
...
Try this out. This should pretty much work for you.
Hope this helps.