12345678910111213141516171819 |
- //
- // NIMCommonTableViewCell.h
- // NIM
- //
- // Created by chris on 15/6/29.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class NIMCommonTableRow;
- @protocol NIMCommonTableViewCell <NSObject>
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;
- @optional
- - (void)refreshData:(NIMCommonTableRow *)rowData tableView:(UITableView *)tableView;
- @end
|