2011-06-25 36 views
0

我是新开发的dashcode应用程序。我正在尝试学习RSS iPhone应用程序。我在我的网站上做了一个RSS feed。以下是xml文件的代码。在PC上的interner浏览器中,它显示我的rss正在工作,但是dashcode发出错误,并且不显示Feed的内容。 XML文件如下:Dashcode 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> 

请帮助

+0

它给了什么错误? – jtbandes

回答

3

您还没有指定在XML命名空间的任何。

解决这个问题的最简单方法可能是找到一些其他的RSS并从中获取命名空间:)或者您可以参考RSS specification