我正在开发iphone的应用程序,应用程序的主要功能是使用paypal购买硬件,我有点困惑,用户如何将他家的地址发送到服务器或公司以交付产品。
这对我来说有点困难,因为这是我第一次制作这样的应用程序,只有一个查询,我如何将数据发送给公司,以便它可以向我提供产品。
先谢谢
答案 0 :(得分:1)
你在这里:
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.company.com/send.php?arcticle=%i&address=%@", articleNumber, address]]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
// create the connection with the request
// and start loading
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection) {
// Connection succeeded
} else {
// Connection failed
}