NIMMessageCellFactory.h 585 B

1234567891011121314151617181920212223
  1. //
  2. // NIMMessageCellMaker.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NIMMessageCell.h"
  10. #import "NIMSessionTimestampCell.h"
  11. #import "NIMCellConfig.h"
  12. #import "NIMMessageCellProtocol.h"
  13. @interface NIMMessageCellFactory : NSObject
  14. - (NIMMessageCell *)cellInTable:(UITableView*)tableView
  15. forMessageMode:(NIMMessageModel *)model;
  16. - (NIMSessionTimestampCell *)cellInTable:(UITableView *)tableView
  17. forTimeModel:(NIMTimestampModel *)model;
  18. @end