> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/programming/languages/swift-and-ios/storyboard.md).

# Storyboard

{% hint style="info" %}
**Storyboard**는 [UIKit (유저 인터페이스 킷)](broken://pages/a6e9c59719c98cfc2be352992ad4247c83ffe69d)의 일부로, 시각적인 툴을 사용하여 UI를 드래그 앤 드롭으로 구성할 수 있는 방식입니다.\
스토리보드는 여러 ’씬(scene)’을 포함하고 이들 간의 전환을 시각적으로 표현할 수 있습니다.
{% endhint %}

### **장점**

* **시각적 툴**\
  인터페이스 빌더를 사용하여 컴포넌트를 시각적으로 배치할 수 있습니다.
* **멀티 스크린 관리**\
  하나의 스토리보드에서 여러 화면을 관리하고 화면 간 전환을 쉽게 설정할 수 있습니다.
* **즉각적인 피드백**\
  UI 변경 사항을 즉시 볼 수 있어 개발 과정이 직관적입니다.

### **단점**

* **복잡한 프로젝트에서의 한계**\
  많은 화면을 포함하는 큰 프로젝트에서는 스토리보드가 무거워지고 관리가 어려워질 수 있습니다.
* **협업 문제**\
  소스 코드 관리 시스템에서 스토리보드 파일이 충돌하기 쉽습니다.
* **런타임 오류**\
  연결 오류 등은 컴파일 타임이 아닌 런타임에 발견되기 때문에 디버깅이 어려울 수 있습니다.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/programming/languages/swift-and-ios/storyboard.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
