I have the following code: (Note: newsImageURL is an NSArray)
NSString *imagesURL = @\"http://aud.edu/images/newsimage01.png,http:/
You can load data this way:
NSData *data = [NSData dataWithContentsOfURL: [NSURL URLWithString: [newsImageURL objectAtIndex:indexPath.row]]];
And you can instantiate the array of URLs this way too:
NSArray *newsImageURL = [imagesURL componentsSeparatedByString:@","];
However, if someone scrolls around on the table a great deal, you may end up loading the images many times over as the cells are recycled.