Webページからのデータは本当に必要ありません。ユーザーが何かをしたことをWebサーバーに通知するには、データを1回ロードするだけです。あなたは単に使うことができます:
NSString* urlString = @"http://blaablaa.com/hello.php";
NSURL *theURL = [NSURL URLWithString:urlString];
NSURLRequest *req = [NSURLRequest requestWithURL:theURL];
NSURLConnection *connection = [NSURLConnection connectionWithRequest:req delegate:self];
リクエストの結果を取得する必要がある場合(成功/失敗しましたか)、実装します
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
// your stuff here
}
あなたのクラスで。