SeatContentView.h 355 B

12345678910111213141516171819202122
  1. //
  2. // SeatContentView.h
  3. // StudentDaya
  4. //
  5. // Created by Kyle on 2022/2/21.
  6. // Copyright © 2022 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 连麦的UI
  11. @interface SeatContentView : UIView
  12. @property (nonatomic, strong) NSMutableArray *seatMemberArray;
  13. - (void)refreshSeatUI;
  14. @end
  15. NS_ASSUME_NONNULL_END