I've never build an mobile App before and I want to create an iOS App for my blog. I'm wondering how do you put the feeds from my blog into the app开发者_高级运维?
Well step number 1 is that you need to learn the basics of iOS development. I'm not sure of your background (programming/non-programming) but one thing for sure is that development for iOS is slightly different from most other platforms. That being said, there's a wealth of information to get started at http://developer.apple.com/devcenter/ios/
The right way is to go through the tutorials and documents.
Once you have a basic understanding of how to program for the iPhone, building a simple XML parser is really easy. All you need to do is point your app to your blog's RSS feed and parse that XML to display it on your app.
Apple has a sample XML parsing iPhone project here: http://developer.apple.com/library/ios/#samplecode/SeismicXML/Introduction/Intro.html
Another way to do this if you don't have the patience to learn iOS programming is build a webapp using one of the many libraries available out there. My knowledge on this subject is limited so I guess I can point you in the right direction, and that is about it: http://www.sencha.com/products/touch/
精彩评论