开发者

Return all value in my NSMutableArray

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 objectAtIn开发者_开发百科dex:0];

How can I display all the entries in my array and not only 1 entry? Do I have to use objectAtIndex?


It sounds like you're looking for something like this:

self.audio = "All finchesAudio Audio clips"

Unfortunately, it's not that easy. Without seeing more code, it's hard to say exactly what you need to change but "self.audio" is a single Audio object. You need to modify your app's interface to support the display of all the audio segments at once by getting rid of self.audio and replacing it with something capable of holding multiple audio clips.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜