-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainViewController.swift
41 lines (24 loc) · 1.28 KB
/
MainViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// MainViewController.swift
//
// Created by Hajin Jeong on 2021/06/03.
//
import UIKit
class MainViewController: UIViewController {
var customAlertView = CustomAlertView()
// 사용할 때, 반드시 CustomAlertView()를 var나 let 로 불러와 놓고 사용해야 함
override func viewDidLoad() {
super.viewDidLoad()
customAlertView.customAlert01(mainView: self.view, title: "타이틀", message: "여기는 내용입니다", heightOfTotalAlertView: 132, HeightSumOfAllButtons: 44, leftBtnTitle: "나가기", RightBtnTitle: "계속 작성") {
print("leftBtn TAP!!!!")
} rightBtnCompletion: {
print("rightBtn TAP!!!!")
}
// 아래와 같이 CustomAlertView()로 직접 불러와서 사용할 경우, 버튼을 눌렀을 때, 뷰가 사라지지 않는 문제 발생함
// CustomAlertView().customAlert01(mainView: self.view, title: "타이틀", message: "여기는 내용입니다", heightOfTotalAlertView: 132, HeightSumOfAllButtons: 44, leftBtnTitle: "나가기", RightBtnTitle: "계속 작성") {
// print("leftBtn TAP!!!!")
// } rightBtnCompletion: {
// print("rightBtn TAP!!!!")
// }
}
}