I wanted to do validation of xml in objective c. Is there any provision or way in objective c to check whether the given xml is valid or not ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use NSXMLDocument for this:
For ios use NSXMLParser
It will not crash, if NSXMLParser finds an error, it will let you know through its delegate, either by invoking parser:validationErrorOccurred: or – parser:parseErrorOccurred:. You can use the – (NSError *)parserError in NSXMLParser to determine the error wich caused the parsing to terminate.