vote up 2 vote down star
2

I have two NSURLConnections. The second one depends on the content of the first, so handling the data received from the connection will be different for the two connections.

I'm just picking up Objective-C and I would like to know what the proper way to implement the delegates is.

Right now I'm using:

NSURL *url=[NSURL URLWithString:feedURL];
NSURLRequest *urlR=[[[NSURLRequest alloc] initWithURL:url] autorelease];
NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:urlR delegate:self];

I don't want to use self as the delegate, how do I define two connections with different delegates?

NSURLConnection *c1 = [[NSURLConnection alloc] initWithRequest:url delegate:handle1];
NSURLConnection *c2 = [[NSURLConnection alloc] initWithRequest:url delegate:handle2];

How would do i create handle1 and handle2 as implementations? Or interfaces? I don't really get how you would do this.

Any help would be awesome.

Thanks, Brian Gianforcaro

flag

79% accept rate

6 Answers

vote up 1 vote down check

In your sample, you alloc a DownloadDelegate object without ever init'ing it.

    DownloadDelegate *dd = [DownloadDelegate alloc];

This is dangerous. Instead:

    DownloadDelegate *dd = [[DownloadDelegate alloc] init];

Also, it's not strictly necessary to declare your delegate response methods in your @interface declaration (though it won't hurt, of course). Finally, you'll want to make sure that you implement connection:didFailWithError: and connectionDidFinishLoading: to -release your DownloadDelegate object, otherwise you'll leak.

Glad you're up and running!

link|flag
vote up 0 vote down

Try my MultipleDownload class at http://github.com/leonho/iphone-libs/tree/master, which it handles multiple NSURLConnection objects for you.

link|flag
vote up 0 vote down

Ha, it didn't work because I've used an infinite loop to wait for an error or download to finish. The infinite loop locked the main thread preventing it from passing messages.

link|flag
vote up -2 vote down

Hello,

I'm trying to write a class that implements these methods and the problem is the object doesn't seem to receive these messages and doesn't download anything. What am i doing wrong?

url_connection.h

@interface URL_Connection : NSObject
{
    	NSMutableData	*receivedData;
    	NSURL			*url;
    	NSURLRequest	*theRequest;
    	NSURLConnection	*theConnection;
    	NSError			*theError;

    	bool			_isConnected;
    	bool			_isFinished;

    	id				_delegate;
}


- (void) connect;
- (bool) isConnected;
- (bool) isFinished;
- (NSError*) getError;
- (int) getDataSize;

- (unsigned char*) getData;

@end

url_connection.m

#import "URL_Connection.h"


@implementation URL_Connection

- (id)init
{
    if (self = [super init])
    {
    	_isConnected = false;
    	_isFinished	= false;
    }
    return self;
}


-(void) connect
{
    	{

    		url = [NSURL URLWithString: @"http://www.google.com" ];  

    		theRequest=[NSURLRequest requestWithURL : url
    									cachePolicy : NSURLRequestReloadIgnoringCacheData
    								timeoutInterval : 60.0];

    		 // create the connection with the request
    		 // and start loading the data
    		 theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

    		 if (theConnection)
    		 {
    			 // Create the NSMutableData that will hold
    			 // the received data
    			 // receivedData is declared as a method instance elsewhere
    			 receivedData=[[NSMutableData data] retain];
    			 _isConnected = true;
    		 }
    		 else
    		 {
    			 // inform the user that the download could not be made
    			 _isConnected = false;
    		 }
    	}
 }


- (bool) isConnected
{
    	return _isConnected;
}


- (NSError*) getError
{
    	return theError;
}


- (bool) isFinished
{
    	return _isFinished;
}


- (unsigned char*) getData
{
    	int urlLength = [receivedData length];
    	unsigned char *downloadBuffer;

    	downloadBuffer = (unsigned char*) malloc (urlLength);

    	[receivedData getBytes: (unsigned char*)downloadBuffer];

    	return downloadBuffer;
}


- (int) getDataSize
{   
    	return [receivedData length];
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response 
{ 
    	// this method is called when the server has determined that it 
    	// has enough information to create the NSURLResponse 
    	// it can be called multiple times, for example in the case of a 
    	// redirect, so each time we reset the data. 
    	// receivedData is declared as a method instance elsewhere 
    	[receivedData setLength:0]; 
}


- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data 
{ 
    	// append the new data to the receivedData 
    	// receivedData is declared as a method instance elsewhere 
    	[receivedData appendData:data]; 
} 


- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error 
{ 
    	// release the connection, and the data object
    	[connection release]; 
    	// receivedData is declared as a method instance elsewhere 
    	[receivedData release]; 
    	// inform the user 
    	NSLog(@"Connection failed! Error - %@ %@", 
    		  [error localizedDescription], 
    		  [[error userInfo] objectForKey:NSErrorFailingURLStringKey]); 
} 


- (void)connectionDidFinishLoading:(NSURLConnection *)connection 
{ 
    	// do something with the data 
    	// receivedData is declared as a method instance elsewhere 
    	NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]); 
    	// release the connection, and the data object 

    	_isFinished = true;

}

- (void) dealloc
{

    [super dealloc];
}

@end

the object is initialized like this

    	URL_Connection *connection = [[URL_Connection alloc] init];

    	[connection connect];
    	unsigned char *downloadBuffer;

    	if ( [connection isConnected] )
    	{
    		//Now we wait unil the download is finished or an error pops out
    		while( ![connection isFinished] && [connection getError] == nil )
    		{

    		}
...

the problem is that none of the messages arrive and nothing happens. I guess it's because it's not set properly as a delegate. What am I doing wrong?

Thanks

link|flag
>>What am i doing wrong? You should ask a new question. Instead of putting your question into an answer. – jm Jul 9 at 5:46
vote up 0 vote down

Ben, while your info was helpful It didn't fully answer the question I asked.

I finally figured out how to setup my own delegates, which was what I was really asking.

I implemented it like so:

@interface DownloadDelegate : NSObject 
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;
@end

@implementation DownloadDelegate
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
}
@end

We use the delegate like so:

DownloadDelegate *dd = [DownloadDelegate alloc];
NSURLConnection *c2 = [[NSURLConnection alloc] initWithRequest:url delegate:dd];

Hope that helps anybody in the same position, and thanks again Ben for your help.

Thanks,

Brian Gianforcaro

link|flag
vote up 2 vote down

delegates are implemented as standard NSObject-descended objects.

You can point both connections to the same delegate.

The delegate should implement the NSURLConnectionDelegate methods you'd like to catch (such as -connection:didReceiveData: and -connectionDidFinishLoading:). These methods will get called by the delegate as appropriate.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.