我需要在一个视图中多次发送数据。我有大约 6 个 UISwitches,每次更改值时,我都需要(通过 POST 方法)将数据(一个简单的 NSString)发送到我的 php 脚本(http://www.mydomain.com/script/dowork.php)
在过去的几天里,我一直在努力做到这一点,因为我只设法让它只使用 1 个开关,但当用户更改多个开关时却不行。如果有人可以请给我一个如何做到这一点的例子,这将意味着很多。
编辑
这就是我现在的做法:
-(IBAction)switchSelector:(id)sender {
switch ([sender tag]) {
case 0:
if (switchMax.on) {
//here I Send it to the method that will make the connection
[self registerWithServer:@"Tokens"];
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
[defaults setBool: switchMax.on forKey: K_SWITCH_KEY];
[defaults synchronize];
} else {
//other stuff
}
break;
}
}