26 lines
542 B
Objective-C
Executable File
26 lines
542 B
Objective-C
Executable File
//
|
|
// YYJYChooseTeamAlert.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/7/12.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYChooseTeamAlert : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *blueSelBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *redSelBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
|
|
|
@property (nonatomic, strong) NSDictionary *dict;
|
|
|
|
- (void)onPopupWithSize:(CGSize)size parent:(UIView *)parent;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|