Creates the view controller with the specified identifier and initializes it with the data from the storyboard.
뷰 컨트롤러에 지정된 식별자를 만들고, 스토리보드로부터 데이타와함께 뷰컨트롤러를 초기화한다.
func instantiateViewController(withIdentifier identifier: String) -> UIViewController
An identifier string that uniquely identifies the view controller in the storyboard file.
식별자 문자/ 유일하게 뷰 컨트롤러를 식별하게 하는/ 스토리보드 파일에서
At design time, put this same string in the Storyboard ID attribute of your view controller in Interface Builder.
디자인 타임에, 이것과 같은 문자를 인터페이스 빌더안에 당신의 뷰컨트롤러의스토리보드 ID 속성에 넣는다.
This identifier is not a property of the view controller object itself. The storyboard uses it to locate the appropriate data for your view controller.
이러한 식별자는 뷰컨트롤러객체 그 자체의 프로퍼티가 아니다. 스토리보드는 이것을 당신의 뷰컨트롤러에 대한 적절한 데이타를 위치시키기위해 사용한다.
If the specified identifier does not exist in the storyboard file, this method raises an exception.
만약 지정된 식별자가 스토리보드 파일에 존재하지 않는다면 이러한 메소드는 제외를 발생시킨다.
The view controller corresponding to the specified identifier string. If no view controller has the given identifier, this method throws an exception.
지정된 식별 문자에 해당하는 뷰컨트롤러
만약 주어진 식별자를 가진 뷰컨트롤러가 없다면, 이러한 메소드는 예외를 던진다.
Use this method to create a view controller object to present programmatically. Each time you call this method, it creates a new instance of the view controller using the init(coder:) method.
뷰 컨트롤러 객체를 만들기 위해 이 메소드를 사용한다. 코드로 나타내기 위해/ 당신이 이 메소드를 호출할 때마다, init(coder:)메소드를 사용하여 뷰컨트롤러의 새로운 인스턴스를 생성한다.