17 lines
260 B
Objective-C
17 lines
260 B
Objective-C
//
|
|
// LMSignInSuccessAlertView.m
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/30.
|
|
//
|
|
|
|
#import "LMSignInSuccessAlertView.h"
|
|
|
|
@implementation LMSignInSuccessAlertView
|
|
|
|
- (IBAction)closeButtonClick:(UIButton *)sender {
|
|
[self removeFromSuperview];
|
|
}
|
|
|
|
@end
|