如何添加到XML文件的链接?

时间:2016-05-16 09:49:08

标签: ios xml

我有一个UITable,里面装满了XML数据 - 书名,作者和PDF的链接。首先,我需要创建一个XML文件,我已经编写了如下代码,但它只显示链接为文本。我想要一个关于它的地方的链接。请指导我。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<books>
<book>
    <bookname>Book1</bookname><author>ABC</author><link>http://api.geonames.org/neighbours</link>
</book>

...
...

</books>

enter image description here

1 个答案:

答案 0 :(得分:0)

如果您想在这种情况下使用常规网络链接,请查看NSLinkAttributeName

示例:

let attributedString = NSMutableAttributedString(string: "Link to site!")
        attributedString.addAttribute(NSLinkAttributeName, value: "https://www.google.com", range: NSMakeRange(0, 4))