| 1234567891011121314151617181920 |
- //
- // LNCommonAlertView+Profile.swift
- // Gami
- //
- // Created by OneeChan on 2026/1/11.
- //
- import Foundation
- extension LNCommonAlertView {
- static func showProfileEditEnsaveAlert(_ handler: @escaping () -> Void) {
- let alertView = LNCommonAlertView()
- alertView.titleLabel.text = .init(key: "A00018")
- alertView.showCancel()
- alertView.showConfirm {
- handler()
- }
- alertView.popup()
- }
- }
|