Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Iphone 如何创建与xml Web服务连接的注册表单?_Iphone_Ios_Xcode_Httprequest - Fatal编程技术网

Iphone 如何创建与xml Web服务连接的注册表单?

Iphone 如何创建与xml Web服务连接的注册表单?,iphone,ios,xcode,httprequest,Iphone,Ios,Xcode,Httprequest,我必须在我的应用程序中创建注册表。它应该连接到web服务。我如何创建它?有关于这方面的好教程吗 您只能将数据发送到web服务。。。e、 如果你的表单中有文本文件,那么你可以创建一个方法,在这个方法中你可以传递链接,在链接中你可以传递文本字段的值。。。例如: -(void)sendData { NSString *registeruser = [NSString stringWithFormat:@"http://yourlink//username=%@",yourTextfiled.text

我必须在我的应用程序中创建注册表。它应该连接到web服务。我如何创建它?有关于这方面的好教程吗

您只能将数据发送到web服务。。。e、 如果你的表单中有文本文件,那么你可以创建一个方法,在这个方法中你可以传递链接,在链接中你可以传递文本字段的值。。。例如:

-(void)sendData
{
 NSString *registeruser = [NSString stringWithFormat:@"http://yourlink//username=%@",yourTextfiled.text];
   NSLog(@"registeruser...%@",registeruser);
}
并在需要的地方调用此方法。。如果要在Register按钮上调用此方法,请执行按钮操作并调用此方法。。例如

 -(IBAction)RegisterAction:(id)sender
 {
   [self sendData];
 }

希望它能帮助您..

如何将注册表连接到web服务,您只向web发送数据或信息service@NANNAV:是的,我只向web服务发送注册详细信息。如果您将数据传递给web服务,则您只在自身数据中分配字符串