A solution to add a UIImageView in an UITableView (inspired by Tweetbot).
@property (nonatomic, strong) NSArray *data;
@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, weak) id <IRImageTableViewDelegate> delegate;
-(id)initWithTable:(UITableView*)aTable withData:(NSArray *)aData;
@end
##IRImageTableViewDelegate Protocol
@protocol IRImageTableViewDelegate <NSObject>
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
@end
##Contact