我目前使用下面的代碼嘗試在NSMutableURLRequest。NSMutableURLRequest發佈數據到URL
NSMutableURLRequest *postRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:allStrings]];
[postRequest setHTTPMethod:@"POST"];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:postRequest delegate:self];
我不知道如何實際發起帖子。究竟是什麼在URL上觸發它?我有一切設置,但* conn尚未使用,所以我如何使用* conn?
我不需要獲取任何信息,因此將NSURLConnection放在(void)前是否安全? – daemon
只是不要分配結果。 '[[NSURLConnection alloc ...' – Mundi