Possible Duplicate:
Pull twitter profile image
Does anyone know how can i get profile image from twitter as well in table view cells? I'm using the following code to get username and text. But want to have profile image for a better clarity.
NSDictionary *tweet = [self.results objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@: %@", [tweet objectForKey:@"from_user"],
[tweet objectForKey:@"text"]];
I'm borrowing the code from here if you need in any case.