JXCustomerChatListCell.h 552 B

123456789101112131415161718192021222324
  1. //
  2. // JXCustomerChatListCell.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/6/8.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "chatListModel.h"
  10. @protocol webViewCellDelegate<NSObject>
  11. - (void)webViewDidFinishLoad:(CGFloat)webHeight cellIndex:(NSInteger)index;
  12. @end
  13. @interface JXCustomerChatListCell : UITableViewCell
  14. @property (nonatomic,weak) id<webViewCellDelegate>delegate;
  15. @property (nonatomic, assign) NSInteger indexPath;
  16. - (void)refreshWebView:(chatListModel *)url indexPath:(NSInteger)index;
  17. @end