Can I load multiple UIViewControllers that each kick off their own NSURLConnections?
        Posted  
        
            by RexOnRoids
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by RexOnRoids
        
        
        
        Published on 2010-03-18T13:54:05Z
        Indexed on 
            2010/03/18
            14:11 UTC
        
        
        Read the original article
        Hit count: 401
        
My Rootviewcontroller uses NSURLConnection to get data from a server, and then, based on this data, loads a bunch (like 7) of smaller UIViewControllers that each also use their own NSURLConnection to get some more specific data from the server. But, the problem is, only the RooTViewController is recieving callbacks from:
- (void)connectionDidFinishLoading:(NSURLConnection *)theConnection
the other UIViewControllers never get callbacks...
© Stack Overflow or respective owner