おかげで事前iphoneで複数のデリゲートを使用するにはどうすればよいですか?
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
[responseData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[responseData appendData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
NSLog([NSString stringWithFormat:@"Connection failed: %@", [error description]]);
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
[connection release];
//do something with the json that comes back ... (the fun part)
}
- (void)viewDidLoad
{
[self searchForStuff:@"iPhone"];
}
-(void)searchForStuff:(NSString *)text
{
responseData = [[NSMutableData data] retain];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.whatever.com/json"]];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
に、私はあなたがインスタンスを使用することができ、Webアクセス
私は客観的なCの方が新しいですのでplzにコードを教えてください –
まず、いくつかの簡単なことを構築し、Objective Cのハングアップを取得し、いくつかのチュートリアルに従ってみてください。またはDan Raysの優れたソリューションを使用してください。 – Rengers