Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 718 Bytes

File metadata and controls

30 lines (21 loc) · 718 Bytes

IRImageTableView

A solution to add a UIImageView in an UITableView (inspired by Tweetbot).

IRImageTableView Class

@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