I have a web page, and need to parse content of some div with objective-c.
<div id="foo">11</div>
Then add it (11) to variable.. and then make badge with it.
How to make it?
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.
This website seems to have a decent introduction and set of tutorials on getting started with scraping in iOS. I used it a couple of months back as a reference. It has you use
libxml2(a C library) and thehppleObjective-C library to wrap libxml2 into NSObjects.