// // YYKTVTipsAlert.m // YaYin // // Created by bj_szd on 2023/7/12. // Copyright © 2023 YaYin. All rights reserved. // #import "YYKTVTipsAlert.h" @interface YYKTVTipsAlert () @end @implementation YYKTVTipsAlert - (void)awakeFromNib { [super awakeFromNib]; [self createUI]; } - (void)createUI { [self.confirmBtn setJianBianWithCGSize:CGSizeMake(ScreenWidth-20*2, 44)]; WEAK_SELF [self.touchImgV dg_Tapped:^{ [weakSelf removeFromSuperview]; }]; } - (IBAction)onConfirm:(id)sender { [UIViewController goMicRoomWithRid:self.rid withPwd:@""]; [self removeFromSuperview]; } @end