[Swift3.0] 스토리 보드를 사용하지 않는 방법
4316 단어 Swift3.0
I'm a biginner at using Swift,so let me share some of the difficulties that I had to go through as a biginner.
김에 영어 공부를 겸하고 있으므로, 잘못된 점이 있으면 꼭 지적해 주십시오.
Also, I'm studying English currently,so please correct me if any of my grammar is wrong.
Storyboard를 사용하지 않고 코딘을 시도했을 때 Storyboard 파일을 삭제하는 것만으로는 안 되었으므로 여기에 적습니다.
When I tried programming without using Storyboard,erasing the Storyboard file was not enough to solve the error.So, let's check it out.
참고로 한 사이트
This is the website that I referred to.
Xcode 프로젝트에서 스토리 보드를 제거하고 제거하는 방법
Single View Application에서 프로젝트를 만듭니다.
And create Project using 'Single View Application'.
Main.storyboard, LaunchScreen.storyboard, Assets.xcassets의 세 파일을 삭제합니다.
And delete three files "Main.storyboard""LaunchScreen.storyboard""Assets.xcassets".
"info.plist"파일에서 "Launch screen interface file base name"과 "Main storyboard file base name"의 두 가지를 삭제합니다.
And delete two files "Launch screen interface file base name""Main storyboard file base name"in info.plist
이 상태에서 일단 빌드(cmd+r)합니다.
In this case,first we build.
이미지가 없으면 오류가 발생하므로 오류 메시지를 클릭합니다.
Without an image,we encounter an error,so click on the error message.
다이얼로그가 표시되므로, 「Add」를 클릭해 xcode에 자동으로 화상을 작성하게 합니다.
Once the dialog appears, click "add"and then a image has made by the xcode automatically.
AppDelegate.swift에 아래 코드를 추가합니다.
Insert coding below in AppDelegate.swift.
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// ここに追記
}
window = UIWindow(frame: UIScreen.main.bounds)
window!.backgroundColor = UIColor.white
window!.rootViewController = ViewController()
window!.makeKeyAndVisible()
빌드하면 storyboard가 없는 상태에서 코딩을 시작할 수 있어야 합니다.
The once you build,the coding begins without any Storyboard.
잘 부탁드립니다.
Thanks you.
Reference
이 문제에 관하여([Swift3.0] 스토리 보드를 사용하지 않는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Super_Swift_Biginner/items/3e49e96123072386f583텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)