Let's say I have an XML-file looking like this:

<messages>
  <message id="1">
    <text>Hello</text>
    <text>How are you?</text>
    <from>Mr. Nice</from>
  </message>
  <message id="1">
    <text>Howdy</text>
    <text>What's up?</text>
    <from>Mrs. Nice</from>
  </message>
</messages>

How do I then populate a sectioned table like this:

HEADER 1 = Mr.Nice

TABLECELL 1.1 = Hello, TABLECELL 1.2 = How are you?

HEADER 2 = Mrs.Nice

TABLECELL 2.1 = Howdy, TABLECELL 2.2 = What's up?

Thanks in advance!

// Sebastian

link|improve this question
What have you tried so far? What specific problems are you having? – jrturton Jan 30 at 16:51
Currently I'm using objectAtIndex:indexPath.row, but as the next section comes along the row will restart at 0, which I'm not certain how to fix. – Sebastian Christiansson Jan 30 at 17:23
Please update your question with details on how you have parsed your XML into array(s) to use as a datasource - it sounds like your problem is either in your data source methods or the way you have parsed the XML. Do you want one section per message element or to group all messages from the same person under one section? – jrturton Jan 30 at 17:26
feedback

1 Answer

To parse your xml into something useful to your app, say, by populating a collection of objects, you will need to start with NSXMLParser.

To understand how NSXMLParser applies to your situation, here is a fantastic tutorial describing how to use it with an XML file.

link|improve this answer
Well. I have everything set up and it's working, most of it. Though the second table has the same tablecell values as the first one. – Sebastian Christiansson Jan 30 at 16:57
both of your hyperlinks point to the same page – Vin Jan 30 at 16:58
See also this post regarding selecting the right parser for the job: stackoverflow.com/questions/4181690/…. The "How To Choose The Best XML Parser for Your iPhone Project" link is excellent. – wmorrison365 Jan 30 at 17:02
@Vin my apologies. I've updated my answer to fix the link. Thanks! – Jeremy Feb 2 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.