NIMSessionTableAdapter.h 467 B

12345678910111213141516171819
  1. //
  2. // NIMSessionTableDelegate.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2016/11/7.
  6. // Copyright © 2016年 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NIMSessionConfigurateProtocol.h"
  10. #import "NIMMessageCellProtocol.h"
  11. @interface NIMSessionTableAdapter : NSObject<UITableViewDelegate,UITableViewDataSource>
  12. @property (nonatomic,weak) id<NIMSessionInteractor> interactor;
  13. @property (nonatomic,weak) id<NIMMessageCellDelegate> delegate;
  14. @end