Dashcode xml问题

时间:2011-06-25 07:05:32

标签: xcode macos dashcode

我是dashcode app开发的新手。我正在尝试学习RSS iphone应用程序。我在我的网站上制作了一个RSS源。以下是xml文件的代码。在PC上的interner explorer中,它显示我的rss正在工作但是dashcode给出了错误并且没有显示feed的内容。 xml文件如下:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Webzians Library</title>
<link>http://www.webzians.com</link>
<description>website building and design</description>
<generator>Notepad</generator>
<item>
<title>First Item</title>
<link>http://www.webzians.com/first.html</link>
<description>this is first item</description>
</item>
<item>
<title>Second Item</title>
<link>http://www.webzians.com/Second.html</link>
<description>this is Second item</description>
</item>
<item>
<title>Third Item</title>
<link>http://www.webzians.com/third.html</link>
<description>this is third item</description>
</item>
<item>
<title>Fourth Item</title>
<link>http://www.webzians.com/fourth.html</link>
<description>this is fourth item</description>
</item>
</channel>
</rss>

请帮助

1 个答案:

答案 0 :(得分:3)

您尚未在XML中指定任何名称空间。

解决此问题的最简单方法可能是找到其他RSS并从中获取名称空间:)或者您可以咨询RSS specification