PHPスクリプトを呼び出すための以下のコードを取得しました。何らかの理由で、接続が成功したと表示されますが、メールを受信していないため、実際にはスクリプトを呼び出しませんでした:-(
NSURLConnectionDelegate メソッドは呼び出されません。
iPhone 5.x デバイスとシミュレーターでのテスト。
提案/アイデアはありますか?どうもありがとうございました!
NSString* url = [NSString stringWithFormat:@"http://www.lenniedevilliers.net/mail.php?subject=%@&to=%@&body=%@", subjectLine, toAddress, emailBody ];
NSLog(@"web service URL: %@", url);
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString: url] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
connection = [[NSURLConnection alloc] initWithRequest: request delegate:self];
NSLog(@"connection: %@", [connection debugDescription]);
if (connection) {
NSLog(@"Connection succeeded");
} else {
NSLog(@"Connection failed");
}