WFCUMultiCallOngoingExpendedCell.h 657 B

123456789101112131415161718192021222324
  1. //
  2. // WFCUMultiCallOngoingExpendedCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by Rain on 2022/5/8.
  6. // Copyright © 2022 Wildfirechat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol WFCUMultiCallOngoingExpendedCellDelegate <NSObject>
  11. -(void)didJoinButtonPressed;
  12. -(void)didCancelButtonPressed;
  13. @end
  14. @interface WFCUMultiCallOngoingExpendedCell : UITableViewCell
  15. @property(nonatomic, weak)id<WFCUMultiCallOngoingExpendedCellDelegate> delegate;
  16. @property(nonatomic, strong)UILabel *callHintLabel;
  17. @property(nonatomic, strong)UIButton *joinButton;
  18. @property(nonatomic, strong)UIButton *cancelButton;
  19. @end
  20. NS_ASSUME_NONNULL_END