In iOS 13 and later, iPad apps can support multiple windows. For example, in an iPad app that enables document creation, people could have multiple document windows open at the same time.

iOS 버전 13 이상의 아이패드 앱은 멀티 윈도우(다중 윈도우)를 지원합니다. 문서 작성 앱을 예로 든다면, 여러 문서 하나하나가 각각 있는 윈도우들이 생성되는 것이죠.

<aside> 💡 NOTE To support multiple windows in the Mac version of your iPad app, you must support multiple windows on iPad. For guidance, see Mac Catalyst. 아이패드 앱의 Mac 버전에서 다중 윈도우를 지원하기 위해선 아이패드에서 먼저 다중 윈도우를 지원해야 합니다.

</aside>

There are several ways people can open a new window. For example:

사용자들이 새 윈도우를 여는 방법들은 아래와 같습니다 :

iPad apps typically use two types of windows. A primary window lets people navigate the app's full hierarchy and access all of the app's objects and the actions associated with them. An auxiliary window often supports a modal task or contains a single object and the actions associated with it; in both cases, people tend to close an auxiliary window after they’ve completed their work in it. In Mail, for example, the primary window contains all mailboxes and messages, whereas an auxiliary window displays a single message.

아이패드 앱은 두가지 종류의 윈도우를 보통 사용합니다. 주요 윈도우는 사용자들이 앱의 전체 위계, 구성과 앱의 오브젝트와 관련 액션에 모두 접근할 수 있도록 합니다. 보조 윈도우는 모달 태스크 또는 단일한 오브젝트를 지원합니다. 모달이든 단일 오브젝트든 모두 사용자들이 임무 수행 후 윈도우를 끕니다. 예를 들어 메일 앱의 경우, 주요 윈도우는 모든 메일함과 메세지를 포함하는 반면 보조 윈도우는 메세지 하나를 보여줍니다.

Although in most cases you should use a primary window, whether to use an auxiliary window depends largely on the type of content people want to view when they open a new window in your app. Regardless of whether people open a new window by dragging an item to the side of the screen or by choosing an "Open Item in New Window" command, consider the following heuristic.