i want know if is possible, to get a specific element value of a xml file without use all delegate NSXMLParse method, i know that in OS X is possible with two simple line:
NSXMLDocument *xmlDoc = [[NSXMLDocument alloc] initWithData:connection.data options:0 error:nil];
NSString *time = [[xmlDoc rootElement] stringValueForXPath:@"./Time"];
is possible do the same thing in iOS? with few line?
thanks