开发者

How to build an Array or Nested Array to display in UITableView and then sort by certain objectAtIndex?

Sorry for such a confusing title but it's hard to explain in a few words what I'm trying to accomplish. I'll try to explain the best I can. Ok, I'm parsing data from a xml file. It's constructed like so:

<item1>
   <subitem1>text</subitem1>
   <subitem2>text</subitem2>
   <subitem3>text</subitem3>
   <subitem4>text</subitem4>
   <subitem5>text</subitem5>
</item1>
<item2>
   <subitem1>text</subitem1>
   <subitem2>text</subitem2>
   <subitem3>text</subitem3>
   <subitem4>text</subitem4>
   <subitem5>text</subitem5>
</item2>
<item3>
   <subitem1>text</subitem1>
   <subitem2>text</subitem2>
   <subitem3>text</subitem3>
   <subitem4>text</subitem4>
   <subitem5>text</subitem5>
</item3>
so on and so on...

So basically I want to display each item into a separate row in a UITableView and put each subitem into it's parent's row/cell as a label to display the info about it's parent "item". Also, I need to be able to sort each item by 开发者_如何学JAVAone of it's subitems i.e. let's say subitem4. If subitem4 is equal to some string then it would display that item into the UITableView however if subitem4 isn't equal to that string I compare it to then that item wouldn't get displayed in the UITableView. As of right now I really don't have any working code because I'm not sure how to go about making this work. I don't know how I would do this because I have 1 array right now with all of the subitems together and I'm just separating each subitem and putting them into separate arrays so I can distinguish between each item row, I'm do it with the following code:

int totalNames = [Names count];
id name = [Names objectAtIndex:1];
[listOfItems addObject:name];

I'm pretty sure I'm going about this the wrong way. There must be a better way to do this logically. Any help or advice would be much appreciated. I'm mentally exhausted with this. Thanks.


Use classes.

Make each Item an instance of a class. make each subitem a property of the class. then have one array of the objects. then can sort based on a particular property or whatever.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜