嗨我正在與下面的XML是我的xml從服務器。如何檢查xml標籤字符串?
<message xmlns="jabber:client" to="[email protected]" id="A2EFL-1435" from="[email protected]"><x xmlns="jabber:x:event"><composing/><id>A2EFL-1434</id></x></message>
現在我需要檢查是否有composing
元素或XML not.And我沒有使用任何XML代表。有沒有使用委託方法用於XML
NSXMLElement *events = [message elementForName:@"x"];
NSString *eventString=[[message elementForName:@"x"] stringValue];
if (![eventString isEqualToString:@""]) {
NSString *composingString=[[events elementForName:@"composing"] stringValue];
if ([composingString isEqualToString:@""]||[composingString isEqualToString:@"nil"]) {}
任何可能性,但我需要檢查XML標籤不珍惜
但如何檢查標籤等於「作曲」字符串我對每個XML名稱不同 – Bittoo
是正是我對每個XML性反應的不同的字符串,我需要檢查字符串 – Bittoo
如何將'NSXMLElement轉換'到'NSString'。 – Bittoo