-3
this is my screenshot [これを解決するために検索しましたが、解決策は見つかりませんでした。スクリーンショットに表示されるエラーが表示される理由私を助けてください。nsmutableurlrequestの表示されない@interfaceはセレクタsethttpbodyを宣言します
NSURL *url=[NSURL URLWithString:@"http://www.gourmet7.com/auth"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%lu", (unsigned long)[postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
NSError *error = [[NSError alloc] init];
NSHTTPURLResponse *response = nil;
NSData *urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %ld", (long)[response statusCode]);
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
] 2
iosの新機能です。私にxcode 7.2を使用している解決策を教えてください – Sandy
これまでに何を試しましたか? – Genzotto
投稿を投稿したい私は何が間違っていたのか分からない。 @Genzottoはあなたに私の質問をしました。 – Sandy