123456789101112131415161718192021222324 |
- //
- // JXCustomerChatListCell.h
- // shiku_im
- //
- // Created by 123 on 2020/6/8.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "chatListModel.h"
-
- @protocol webViewCellDelegate<NSObject>
- - (void)webViewDidFinishLoad:(CGFloat)webHeight cellIndex:(NSInteger)index;
- @end
- @interface JXCustomerChatListCell : UITableViewCell
- @property (nonatomic,weak) id<webViewCellDelegate>delegate;
- @property (nonatomic, assign) NSInteger indexPath;
- - (void)refreshWebView:(chatListModel *)url indexPath:(NSInteger)index;
- @end
|