I'm pretty new to programming, and am a little caught up in what to do. Now, each of the objects in my NSArray has its own properties containing data in which I need. I'm used to iterating through an array to access it's objects, but have never had to iterate through one and access the properties of some of its objects. So I am completely lost.
Usually when I need to iterate through an array, it's a straightforward process, something like:
For (int i =0; i <= self.array.count; i++) {
NSLog(@"%d", i):
}
Easy enough. But, now I'm faced with the challenge of looking into the all jacked stored in the arrays index, and access a piece of information from that given object. I need to do this and a for loop since there are multiple objects. I believe from what I've read on this website that I have the logic behind it correct, but I am unsure of how to access the object's properties rather than just the object itself.