Dashcode xml问题

| 我是dashcode应用程序开发的新手。我正在尝试学习RSS iphone应用程序。我已经在自己的网站上制作了RSS供稿。以下是xml文件的代码。在PC上的Interner Explorer中,它表明我的rss正常工作,但破折号给出了错误,并且未显示提要的内容。 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>
请帮忙     
已邀请:
        您尚未在XML中指定任何名称空间。 解决此问题的最简单方法可能是找到其他RSS并从中获取名称空间:)或者您可以查阅RSS规范。     

要回复问题请先登录注册