我現在有一個問題。我需要將一個transactionID和一個用戶密碼傳遞給一個rest服務,並且假設返回true/false值(以XML格式)。然而,它一直返回我(空)..我完全失去了一些請幫助。iPhone中的其他網絡服務
NSString *urlString = [NSString stringWithFormat:@"https://10.124.128.93:8443/axis2/services/C3WebService/completeWithdrawal Transaction?transactionId=%@&password=%@", _transactionID.text, _userPassword.text];
NSURL *url = [[NSURL alloc] initWithString:urlString];
NSString *result = [[NSString alloc] initWithContentsOfURL:url];
NSLog(@"%@",result);
我的結果不斷地讓我返回null。我如何繼續從這裏?
[這](http://stackoverflow.com/questions/2005448/how-to -use-nsxmlparser-to-parse-parent-child-elements-that-the-same-name/2005630#2005630)會給你關於解析的適當想法。 –