Hi,
I usually use this function to display an entry at the indexPath of my tableView:
self.audio = (Audio *)[appDelegate.fichesAudio objectAtIndex:indexPath.row];
Or I do that to display the first entry in my Array:
self.audio = (Audio *)[appDelegate.fichesAudio objectAtIndex:0];
How can I display all the entries in my array and not only 1 entry? Do I have to use objectAtIndex?