24 lines
554 B
Objective-C
Executable File
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
|