私は iOS 開発にかなり慣れていないので、URL からコンテンツを取得しようとしています。NSURLConnection を使用するための Apple チュートリアルを使用しています。すべてが機能していますが、データを取得していません。私は周りを見回しましたが、私の問題に対する答えが見つかりませんでした。プロジェクトで ARC も使用していますが、それが問題の原因でしょうか?
ヘッダーファイルから始まる、使用しているコードは次のとおりです。
@interface ViewController : UIViewController
@property (nonatomic, retain) NSMutableData *receivedData;
@end
実装ファイル:
@implementation ViewController
@synthesize receivedData;
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"1. viewDidLoad");
// Create the request
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
// Create the connection with the request and start loading the data
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if (connection) {
NSLog(@"2. connection succeeded");
receivedData = [NSMutableData data];
} else {
NSLog(@"2. connection failed");
}
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
NSLog(@"3. didReceiveResponse");
[receivedData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[receivedData appendData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"4. Connection failed! Error - %@ %@", [error localizedDescription], [[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"4. Succeeded! Received %d bytes of data", [receivedData length]);
}
すべての NSLog が機能していますが、receivedData のバイト数が 0 であると言い続けています。私の問題に対する答えが見つからなかったので、この質問で答えを見つけられることを願っています。