Web データを非同期で読み込もうとしています。以下を使用できることは理解していますが、void(load) メソッドの呼び出し方法がわかりません。これをどう呼ぶか?自動的に呼び出されないようです。ありがとう!
- (void)load
{
NSURL *myURL = [NSURL URLWithString:[NSString
stringWithFormat:@"http://www.website.com"]];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL
cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}