Friday 20 April 2012

Run Loop and lazy loading example UITableView

NSURLRequest *req = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:self.urlString]];
NSURLConnection *con = [[NSURLConnection alloc]
                                    initWithRequest:req
                                    delegate:self
                                    startImmediately:NO];
 [con scheduleInRunLoop:[NSRunLoop currentRunLoop]
                           forMode:NSRunLoopCommonModes];
 [con start];
           

http://iphonedevelopment.blogspot.in/2010/05/downloading-images-for-table-without.html
8:41http://stackoverflow.com/questions/1130089/lazy-load-images-in-uitableview

No comments:

Post a Comment