xcode RSS Feed iPhone 使用 Storyboard iOS 5

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9809230/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 23:44:50  来源:igfitidea点击:

RSS Feed iPhone using Storyboard iOS 5

iphoneiosxcoderssstoryboard

提问by K.Honda

I am wondering if there are any tutorials for RSS Feeds on the iPhone using Storyboard for iOS 5? Rey Wenderlich has a great tutorial creating a RSS Feed on the iPhone - found here: RSS Feed Tutorial

我想知道是否有关于 iPhone 上使用 Storyboard for iOS 5 的 RSS 提要的任何教程?Rey Wenderlich 有一个很棒的教程,在 iPhone 上创建 RSS 提要 - 在这里找到:RSS 提要教程

However, I am unsure how I can use this tutorial when using storyboard. I have been unsuccessful in finding a RSS tutorial for the iPhone using Storyboard too.

但是,我不确定在使用故事板时如何使用本教程。我也没有成功找到使用 Storyboard 的 iPhone RSS 教程。

If anyone came across one, please can you let me know?

如果有人遇到过,请告诉我好吗?

Thanks. :)

谢谢。:)

回答by WoolyWonder

I recently had difficulty finding a similar tutorial, and ended up creating my own simple RSS reader using the MWFeedParser library: https://github.com/mwaterfall/MWFeedParsercoupled with a UITableView.

我最近很难找到类似的教程,最终使用 MWFeedParser 库创建了我自己的简单 RSS 阅读器:https: //github.com/mwaterfall/MWFeedParser和 UITableView。

Once I was able to get a list of the blog entries, I created a Core Data object for each of my blog entries, with help from this tutorial: http://maybelost.com/2011/12/tutorial-storyboard-app-with-core-data/

一旦我能够获得博客条目的列表,我就在本教程的帮助下为我的每个博客条目创建了一个核心数据对象:http: //maybelost.com/2011/12/tutorial-storyboard-app-带核心数据/

These entries are loaded into a UITableView in my app, which displays the content of the post when the user selects the row in the Table View.

这些条目被加载到我的应用程序中的 UITableView 中,当用户选择表视图中的行时,它会显示帖子的内容。

You can use the storyboarding technique to do this, by dragging the UITableView onto the Storyboard and sub-classing the UITableViewController to implement the feed parsing.

您可以使用情节提要技术来执行此操作,方法是将 UITableView 拖到情节提要上并对 UITableViewController 进行子类化以实现提要解析。

Hope this helps!

希望这可以帮助!