12345678910111213141516171819202122 |
- //
- // SeatContentView.h
- // StudentDaya
- //
- // Created by Kyle on 2022/2/21.
- // Copyright © 2022 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- /// 连麦的UI
- @interface SeatContentView : UIView
- @property (nonatomic, strong) NSMutableArray *seatMemberArray;
- - (void)refreshSeatUI;
- @end
- NS_ASSUME_NONNULL_END
|