QMChatRoomCellFactory.h 666 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // QMChatRoomCellFactory.h
  3. // IMSDK-OC
  4. //
  5. // Created by HCF on 16/3/11.
  6. // Copyright © 2016年 HCF. All rights reserved.
  7. //
  8. @class QMChatRoomBaseCell;
  9. #import <Foundation/Foundation.h>
  10. #import <QMLineSDK/QMLineSDK.h>
  11. @interface QMChatRoomCellFactory : NSObject
  12. /**
  13. cell工厂方法
  14. @param cellClassName cell类名
  15. @param cellModel cell数据模型
  16. @param indexPath index索引
  17. return cell目标
  18. */
  19. + (QMChatRoomBaseCell *)createCellWithClassName: (NSString *)className
  20. cellModel: (CustomMessage *)cellModel
  21. indexPath: (NSIndexPath *)indexPath;
  22. @end