Human Interface Guidelines
  • Intro
  • IOS
    • Themes
    • Interface Essentials
  • App Architecture
    • Accessibility
    • Loading
    • Modality
    • Navigation
    • Onboarding
    • Requesting Permission
    • Settings
  • User Interaction
    • 3D Touch
    • Audio
    • Authentication
    • Data Entry
    • Drag and Drop
    • Feedback
    • File Handling
    • Gestures
    • Near Field Communication
    • Undo and Redo
  • System Capabilities
    • Augmented Reality
    • Multitasking
    • Notifications
    • Printing
    • Quick Look
    • Ratings and Reviews
    • Screenshots
    • TV Providers
  • Visual Design
    • Adaptivity and Layout
    • Animation
    • Branding
    • Color
    • Terminology
    • Typography
    • Video
  • Icons and Images
    • Image Size and Resolution
    • App Icon
    • Custom Icons
    • Launch Screen
    • System Icons
  • Bars
    • Navigation Bars
    • Search Bars
    • Status Bars
    • Tab Bars
    • Toolbars
  • Views
    • Action Sheets
    • Activity Views
    • Alerts
    • Collections
    • Image Views
    • Maps
    • Pages
    • Popovers
    • Scroll Views
    • Split Views
    • Tables
    • Text Views
    • Web Views
  • Controls
    • Buttons
    • Edit Menus
    • Labels
    • Page Controls
    • Pickers
    • Progress Indicators
    • Refresh Content Controls
    • Segmented Controls
    • Sliders
    • Steppers
    • Switches
    • Text Fields
  • Extensions
    • Custom Keyboards
    • Document Providers
    • Home Screen Actions
    • Messaging
    • Photo Editing
    • Sharing and Actions
    • Widgets
Powered by GitBook
On this page
  1. Views

Pages

PreviousMapsNextPopovers

Last updated 6 years ago

A page view controller provides a way to implement linear navigation between pages of content, such as in a document, book, notepad, or calendar. A page view controller uses one of two styles to manage transitions between pages during navigation—scrolling or page-curl. A scrolling transition has no specific appearance; pages fluidly scroll from one to the next. A page-curl transition causes pages to curl over as you swipe across the screen, turning like pages in a physical book.

페이지뷰 컨트롤러는 문서, 책, 메모장 또는 캘린더와 같은 콘텐츠 페이지간에 선형 탐색을 구현하는 방법을 제공합니다. 페이지뷰 컨트롤러는 두 가지 스타일 중 하나를 사용하여 탐색 중 페이지 사이의 전환을 관리합니다(scrolling 또는 page-curl). scrolling 전환에는 특정 모양이 없습니다. 페이지들이 한 페이지에서 다음 페이지로 유동적으로 스크롤됩니다. page-curl 전환은 화면을 스와이프 할 때, 실제 책의 페이지처럼 돌아가면서 페이지가 구부러지게 만듭니다.

If appropriate, implement a way to navigate nonlinearly. When a page view controller is used, pages flow sequentially and there’s no way to jump between nonadjoining pages. If people may need to access pages out of sequence in your app, implement a custom control that provides this functionality.

적절할 경우, 비선형으로 탐색하는 방법을 구현하십시오. 페이지뷰 컨트롤러가 사용될 때, 페이지들은 순차적으로 흐르고 인접하지 않은 페이지간에 점프 할 방법은 없습니다. 사용자가 앱에서 순서가 틀린 페이지에 접근해야 할 필요가 있는 경우, 이 기능을 제공하는 맞춤 컨트롤을 구현하십시오.

For developer guidance, see .

UIPageViewController
Pages - Views - iOS - Human Interface Guidelines - Apple Developer