Pages

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

Last updated