From 611f271e03e9ff2b5c32a9bbb2e3eb719c178df5 Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期三, 28 八月 2024 11:44:09 +0800 Subject: [PATCH] fix UI --- XQMuse/Root/Login/LoginVC.swift | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/XQMuse/Root/Login/LoginVC.swift b/XQMuse/Root/Login/LoginVC.swift index 6e7006e..a51511b 100644 --- a/XQMuse/Root/Login/LoginVC.swift +++ b/XQMuse/Root/Login/LoginVC.swift @@ -155,7 +155,18 @@ } + @IBAction func userRegisterTreatyAction(_ sender: UIButton) { + let vc = LoginTreatyVC() + vc.modalPresentationStyle = .custom + present(vc, animated: true) + } + @IBAction func userPrivateTreatyAction(_ sender: UIButton) { + let vc = LoginTreatyVC() + vc.modalPresentationStyle = .custom + present(vc, animated: true) + } + @IBAction func registerAction(_ sender: UIButton) { let vc = RegisterVC() push(vc: vc) -- Gitblit v1.7.1