Files
yuyin_ios/SweetParty/主类/Mine/青少年模式/YXYoungAlertDescView.m
2025-08-08 11:05:33 +08:00

24 lines
554 B
Objective-C
Executable File

//
// YXYoungAlertDescView.m
// romantic
//
// Created by MAC on 2023/1/15.
// Copyright © 2023 romantic. All rights reserved.
//
#import "YXYoungAlertDescView.h"
@implementation YXYoungAlertDescView
- (IBAction)knowButtonAction:(id)sender {
[self removeFromSuperview];
}
- (void)awakeFromNib {
[super awakeFromNib];
self.knowButton.backgroundColor = [UIColor bm_colorGradientChangeWithSize:CGSizeMake(ScreenWidth-70*2, 44) direction:FXGradientChangeDirectionHorizontal startColor:mainLightColor endColor:mainDeepColor];
}
@end