我正在开发一个应用程序,因为我曾经通过WebServices将我的联系号码发送到服务器。这样我的联系人号码是一个数组,但我怎样才能将我的联系人数据发送到for-loop.Here服务链接。
http://project.in/project-contacts.php
参数contact_numbers[]
下面我尝试了代码
NSString *postVarArrayString = @"";
NSString *separator = @"?";
for (int i=0; i<[_numberArray count]; i++) {
if (i>0) {
separator = @"&";
}
postVarArrayString = [NSString stringWithFormat:@"%@%@myArray[]=%ld", postVarArrayString, separator, (long)[[_numberArray objectAtIndex:i] integerValue]];
}
// url
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:
@"http://project.in/project-contacts.php"
@"%@"
, postVarArrayString]
];
NSLog(@"qq=%@", [url absoluteString]);
这里如何通过WebServices发送我的联系人数组。你能建议我怎么发送,谢谢。