WFCUConferenceLabelView.h 427 B

123456789101112131415161718192021222324
  1. //
  2. // ConferenceLabelView.h
  3. // WFZoom
  4. //
  5. // Created by Tom Lee on 2021/9/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface WFCUConferenceLabelView : UIView
  10. @property(nonatomic, assign)BOOL isMuteAudio;
  11. @property(nonatomic, assign)BOOL isMuteVideo;
  12. /*
  13. 0 - 10
  14. */
  15. @property(nonatomic, assign)NSInteger volume;
  16. @property(nonatomic, strong)NSString *name;
  17. + (CGSize)sizeOffView;
  18. @end
  19. NS_ASSUME_NONNULL_END