화면전환 segue show를 코드로 전환 방법

Jamezz Dev·2020년 8월 26일
0

ios 프로그래밍

목록 보기
6/10
let storyBoard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
        let confirmViewController = storyBoard.instantiateViewController(withIdentifier: "confirms") as! ConfirmController
        if (pw == "" && pw2 == "" ){
            print("null")
        }else if pw == pw2 {
            print("equal")
            // switch screen programatically
            self.navigationController?.pushViewController(confirmViewController, animated: true)
        }else{
            print("not equal")
        }
        ```
profile
💻디지털 노마드를 🚀꿈꾸는 🇯🇲자메즈 🐥개발자 입니다.

0개의 댓글