房间完成

This commit is contained in:
启星
2025-12-01 18:42:49 +08:00
parent 7eb4f8d3b8
commit 2d37ab6844
55 changed files with 653 additions and 41 deletions

View File

@@ -0,0 +1,21 @@
//
// QXSignAlertView.h
// QXLive
//
// Created by 启星 on 2025/12/1.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger) {
QXSignAlerTypeStart = 0,
QXSignAlerTypeFail = 1,
QXSignAlerTypeSuccess = 2,
}QXSignAlerType;
@interface QXSignAlertView : UIView
-(instancetype)initWithType:(QXSignAlerType)type;
-(void)showInView:(UIView*)view;
@end
NS_ASSUME_NONNULL_END