I have an app that reads RSS feeds, is working fine, but I would like to validate the rss link that the user types like the w3 validator
thanks in advance!
😉
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.
Since RSS is just XML, I’m guessing you’re using
NSXMLParserto parse the feed.If you implement the
-[NSXMLParserDelegate parser:parseErrorOccurred:]method, you will be notified if the feed can’t be parsed for whatever reason.The
parserobject in the method contains the line and column number where the error occurred.