NSUInteger row = [indexPath row];
NSString *rowString = [list objectAtIndex:row];
cell.textLabel.text = rowString;
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
//image
NSURL *url = [NSURL URLWithString:@"http://www.buttonshut.com/Twitter-Buttons/Twitter-Buttons-70-10-.png"];
UIImage *image =[UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
cell.imageView.image =image;
//screenNameLabel
//CGRect screenNameLabelRect = CGRect*0,5,70
//Tweet Label
//createdat Label
[rowString release];