문제

I am working on iOS application and i want to get the namespace of a nsxmlelement.

my NSXMLElement *query has the following value in it.

<query xmlns="jabber:iq:roster" test="this is value">
<item subscription="to" name="test" jid="test@local"/>
</query>

I have used following code to get the xmlns but its not working

         NSLog(@"%@",[query attributeStringValueForName:@"test"]);
         NSLog(@"%@",[query attributeStringValueForName:@"xmlns"]);

Value for test is printed but the value for xmlns shows null

Please let me know how to get the value of xmlns

도움이 되었습니까?

해결책

This is because xmlns is not an attribute. xmlns is a namespace definition. You can get it with [query namespaceForPrefix:nil].stringValue.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top