-
info.plist 조사IOS/기록 2021. 1. 28. 00:20
1. info.plist 조사 후 개인 블로그에 작성 (꼭 개인블로그가 아니어도 됩니다)
<프로젝트 내부에 자동으로 생성되는 파일의 의미>
1) AppDelegate.swift :
1. AppDelegate 클래스를 정의한다.
"app delegate"는 앱의 콘텐츠가 그려지는 창을 만들고
앱 내의 상태 전환에 응답 할 수있는 위치를 제공한다.2. 앱에 대한 entry point와 앱에 input 이벤트를 전달하는 실행 루프(run loop)를 만든다.
이 작업은 파일 상단에 나타나는 UIApplicationMain 속성 (@UIApplicationMain)에 의해 수행된다.
→ to-remember-for-100-years.tistory.com/89
2) SceneDelegate.swift :
scene 내에서 발생하는 life-cycle 이벤트에 응답하는 데 사용하는 파일이다.
→ to-remember-for-100-years.tistory.com/90
3) ViewController.swift :
1. 일반적으로 기본 데이터의 변경에 대한 응답으로 뷰의 콘텐츠를 업데이트하는 것.
2. view와 user의 상호 작용에 응답하는 것.
3. view의 크기 조정하는 것과 전체 인터페이스의 레이아웃 관리하는 것.
4. 앱에서 다른 뷰 컨트롤러를 포함하는 다른 객체들과 조정하는 것.
→ to-remember-for-100-years.tistory.com/91
4) Main.storyboard :
앱의 메인이 되는 화면에 대한 정보를 담고 있는 storyboard 파일이다.
→ to-remember-for-100-years.tistory.com/92?category=952091
5) Assets.xcassets :
이미지, 스프라이트, 텍스처, 스티커 및 데이터와 같이
앱에서 사용하는 다양한 asset 유형을 구성하고 관리하기위한 asset catalogs파일이다.
→ to-remember-for-100-years.tistory.com/manage/posts/
6) LaunchScreen.storyboard :
앱이 처음 실행할때 (잠깐) 나오는 시작화면에 대한 정보를 담고 있는 storyboard 파일이다.
→ to-remember-for-100-years.tistory.com/92?category=952091
7) Info.plist :
모든 아이폰 애플리케이션의 기본정보를 담아 놓을 수 있는 설정파일이다.
앱이 시스템에 메타데이터를 제공하기 위한 목적으로 Info.plist라는 특수 파일을 사용한다.
→ to-remember-for-100-years.tistory.com/85?category=952091
About Info.plist Keys and Values
About Info.plist Keys and Values To provide a better experience for users, iOS and macOS rely on the presence of special metadata in each app or bundle. This metadata is used in many different ways. Some of it is displayed to the user, some of it is used i
developer.apple.com
Property List Key 정리 캡쳐
출처 : Apple Developer Document
728x90'IOS > 기록' 카테고리의 다른 글
API Design Guidelines (0) 2021.02.09 Life cycle (0) 2021.02.04 Auto Layout 개념 정리 (0) 2021.01.29 스토리보드 컴포넌트 조사 (0) 2021.01.28 AppProject 속성 조사 (0) 2021.01.28