NIMCommonTableViewCell.h 447 B

12345678910111213141516171819
  1. //
  2. // NIMCommonTableViewCell.h
  3. // NIM
  4. //
  5. // Created by chris on 15/6/29.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class NIMCommonTableRow;
  10. @protocol NIMCommonTableViewCell <NSObject>
  11. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;
  12. @optional
  13. - (void)refreshData:(NIMCommonTableRow *)rowData tableView:(UITableView *)tableView;
  14. @end