present를 위해 xib파일로 생성한 ViewController 인스턴스를 생성 할 때
let vc = MyViewController()
let vc = MyViewController(nibName:”MyViewController”,bundle:nil)
self.present(vc,animated: true, completion: nil)
이 두개 문장이 똑같이 작동하는데
xib파일 이름으로 init을 안해도 똑같이 작동하는데 호출하는 이유가 있을까여?
-
이 게시글은 재영 신에 의해 3 years 전에 수정됐습니다.