
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
27 lines
651 B
Objective-C
27 lines
651 B
Objective-C
//
|
|
// PIRoomActivityChoosePlayView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/2/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ActivityInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class PIRoomActivityChoosePlayView;
|
|
@protocol PIRoomActivityChoosePlayViewDelegate <NSObject>
|
|
|
|
-(void)hiddenViewActionWithView:(PIRoomActivityChoosePlayView *)view;
|
|
-(void)choosePlayTypeWithView:(PIRoomActivityChoosePlayView *)view model:(ActivityInfoModel *)model;
|
|
|
|
@end
|
|
|
|
|
|
@interface PIRoomActivityChoosePlayView : UIView
|
|
@property(nonatomic,strong) NSMutableArray *playList;
|
|
@property(nonatomic,weak) id<PIRoomActivityChoosePlayViewDelegate>delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|