1. AppDelegate 방식 1-1 Infoplist에서 Manifest 삭제 1-2 SceneDelegate 클래스 삭제 1-3 AppDelegate에서 두 함수 삭제 1-4 AppDelegate에서 var window: UIWindow? 추가 1-5 didFinishLaunchingWithOptions 함수에 코드 추가 ## ObjC 문법 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; MainViewController *MainViewController = [storyboard instantiateViewControllerWithIdentifier:@"MainViewController"]; UINav..