I would like to feed data in to my app using plain old XML. Is this allowed, is their any restrictions on the feed at all? Does it need to be a valid RSS feed or the like, or can I use any XML I wish?
Thanks and Regards
Jason
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.
As long as you don’t specifically want to make an RSS reader application, any well-formed valid XML will do the trick. The NSXMLParser class can handle any valid XML. However, if you want to make an RSS reader app, the input needs to be valid RSS/Atom feed in order to conform to these standards – in this case, you can use an RSS parser library in your app.