Dev log/iOS

· Dev log/iOS
Storyboard Storyboard란 앱의 흐름을 나타내며, 시각적으로 화면을 구성하는 곳입니다. 좌측 프로젝트 리스트에서 Main.storyboard로 되어있는 파일이 Storyboard이며, 앱의 전반적인 형태와 앱의 화면 전환, 다양한 Object들을 관리해줍니다. Xcode 우측 상단의 +버튼을 누르거나 Cmd + Shift + L을 동시에 누르면 다양한 Object(Component)가 보이는 화면이 나타납니다. Component(Object) 위에 설명된 방법으로 Component List를 볼 수 있으며, 각 Object의 이름과 해당 Object가 수행하는 역할에 대해 간략하게 적혀있다.아래에 List에 존재하는 각 Component에 대하여 간략하게 정리해보았다. 1. Label & ..
· Dev log/iOS
Project An Xcode project is a repository for all the files, resources, and information required to build one or more software products. A project contains all the elements used to build your products and maintains the relationships between those elements. It contains one or more targets, which specify how to build products. A project defines default build settings for all the targets in the proj..
· Dev log/iOS
Info.plist Information Property List를 의미 실행 패키지에 관한 필수 설정 정보가 포함된 구조화된 텍스트 파일 일반적으로 XML 포맷을 사용 key, value로 구성된 dictionary 형태이고, 이 키값을 이용하여 앱의 설정을 가져옴 프로젝트를 생성하면 자동으로 생성 Target의 Info탭에 설정할 수 있는 여러 조건이 있으며, 추가적으로 조건 설정이 가능 Info.plist 속성 1. Scene Info.plist 파일에 Application Scene Manifest 탭이 있으며, 이는 앱의 Scene 기반 LifeCycle 지원에 대한 정보를 담고 있다. Enable Multiple Windows : 여러 Scene을 설정할 수 있는지 체크하는 속성 Scene C..
· Dev log/iOS
Target A target specifies a product to build and contains the instructions for building the product from a set of files in a project or workspace. A target defines a single product; it organizes the inputs into the build system—the source files and instructions for processing those source files—required to build that product. Projects can contain one or more targets, each of which produces one p..
0Hooni
'Dev log/iOS' 카테고리의 글 목록