-3

php ページにデータを送信したいのですが、php ページは別のシステムにあり、iPad アプリからそのページを呼び出したいのですが、アプリから php ページを呼び出せるようにするには、どうすればこの接続を確立できますか?そして、その接続文字列はどうなりますか..詳細に説明してください. 前もって感謝します

4

2 に答える 2

0

ネイティブ iOS アプリを使用する場合は、そのために Web サービスを使用する必要があります。

于 2012-12-26T13:37:46.137 に答える
0

You can try to diagnose the problem by taking the following steps:

1) Make sure that your iPad and located system are connected with same network.

2) Get IP address from located system (eg IP :121.127.1.4)

enter image description here

3) And try this following code:

NSURL *url = [NSURL URLWithString:@"http://121.127.1.4/webservices.php"];


NSData *postDatastr = [NSData dataWithBytes:[postStr UTF8String] length:[postStr length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString: SignUpConnection_server]];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:postDatastr];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

// Create Connection.
NSURLConnection  *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];

if (conn) {
    resposeData = [[NSMutableData alloc] init];
}
else
{
    NSLog( @"Data could not be received from: %@", request.URL );
}
于 2012-12-26T13:48:53.837 に答える