2
0

WFCUFriendRequestTableViewCell.h 544 B

123456789101112131415161718192021
  1. //
  2. // FriendRequestTableViewCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/10/23.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatClient/WFCChatClient.h>
  10. @protocol WFCUFriendRequestTableViewCellDelegate <NSObject>
  11. - (void)onAcceptBtn:(NSString *)targetUserId;
  12. @end
  13. @interface WFCUFriendRequestTableViewCell : UITableViewCell
  14. @property (nonatomic, strong)WFCCFriendRequest *friendRequest;
  15. @property (nonatomic, weak)id<WFCUFriendRequestTableViewCellDelegate> delegate;
  16. @end