26 lines
542 B
C
26 lines
542 B
C
|
|
//
|
||
|
|
// 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
|