I am a newbie to iPhone development .and I Have to parse xml from a service url..I know to call a wcf service url in xcode.Now I have to consume xml response in the url..Gone throgh google and NSXMLParser .But couldn't get how to use it in my project ...
My XMLResponse is like this :
<GetCompanyResponse xmlns="http://schemas.datacontract.org/2004/07/DomainModel" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
-<CompanyList>
-<Company>
<Id>b9ca2e32-ce88-4d72-99ce-9bc592511e85</Id>
</Company>
</CompanyList>
Now I want to consume the Id value ...How can it be done ?
My XMLResponse is like this :
<GetCompanyResponse xmlns="http://schemas.datacontract.org/2004/07/DomainModel" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
-<CompanyList>
-<Company>
<Id>b9ca2e32-ce88-4d72-99ce-9bc592511e85</Id>
</Company>
</CompanyList>
Now I want to consume the Id value ...How can it be done ?
Last edited: