iOS開發之將XML轉換成樹II

來源:互聯網
上載者:User

    前面一篇文章,很好將xml轉換成樹,並進行操作,但是忽略了對xml節點上屬性的操作,現在讓我來修改代碼,將屬性添加進來。
1、在treenode中加一個類型為NSDictionary的attributeDict用於存放屬性。代碼如下:

NSDictionary * attributeDict;

 2、在中可以在parser:didStartElement:方法中取到屬性列表,在其中添加添加下面代碼。

leaf.attributeDict = [[NSDictionary alloc] initWithDictionary:attributeDict];

3、修改範例xml。

<?xml version="1.0" encoding="UTF-8"?><Login><LoginResult id="1">True</LoginResult><LoginInfo>OK</LoginInfo><LastLogin>2011-05-09 12:20</LastLogin><Right><A>1</A><B>1</B><C>0</C></Right></Login>

4、取屬性id的值。

     TreeNode * resultTreeNode =  [node objectForKey:@"LoginResult"];     NSString *result = [resultTreeNode.attributeDict objectForKey:@"id"];
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.