HI, i am using sample code from to handle Multiple NSUrlCOnnection from the link multiple url connection
when i use CustomURLConnection as NSObject inwhich i specified one Method as to enable
CustomURLConnection *connection = [[CustomURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES tag:tag];
through the following
- (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate startImmediately:(BOOL)startImmediately tag:(NSString *)_tag
{
connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate startImmediately:startImmediately];
self.tag = _tag;
return self;
}
it gives error?