File Handling

People shouldn’t need to think about the file system while creating, viewing, and manipulating files. If your app works with files, downplay file handling as much as possible.

사람들은 파일을 만들고,보고, 조작하는 동안 파일 시스템에 관해 생각할 필요가 없습니다. 앱이 파일과 작동하는 경우 가능한 한 파일 처리를 줄입니다.

Instill confidence that work is always preserved unless canceled or deleted. In general, don’t make people explicitly save files. Instead, save changes automatically at regular intervals, when opening and closing files, and when switching to another app. In some cases, such as while editing an existing file, save and cancel options may still make sense for the sake of confirming when the edits are actually captured.

작업을 취소하거나 삭제하지 않는 한 항상 보존한다는 확신을 주십시오. 일반적으로 사람들이 파일을 명시적으로 저장하지 않습니다. 대신 일정한 간격으로 파일을 열고 닫을 때 및 다른 앱으로 전환 할 때 자동으로 변경 사항을 저장하십시오. 기존 파일을 편집하는 중과 같은 일부 경우에는 편집 내용을 실제로 캡처 한 시점을 확인하기 위해 저장 및 취소 옵션이 여전히 유효 할 수 있습니다.

Don't provide an option to create local-only files. Users often expect all of their files to be available on all of their devices. Whenever possible, your app should support cloud-based file storage through a service such as iCloud.

로컬 전용 파일을 만들 수있는 옵션을 제공하지 마십시오. 사용자는 모든 파일이 모든 장치에서 사용 가능하다고 종종 기대합니다. 가능할 때마다 앱은 iCloud와 같은 서비스를 통해 클라우드 기반 파일 저장소를 지원해야합니다.

Implement an intuitive and graphical file browsing interface. Ideally, use the system’s familiar document picker for browsing. If you implement a custom file browser, make sure it’s intuitive and efficient. File browsers work best when they’re highly graphical, providing visual representations of files. For faster navigation, consider providing a new document button so people don’t need to go elsewhere to create a new document.

직관적이고 그래픽적인 파일 탐색 인터페이스를 구현하십시오. 검색에는 시스템에 익숙한 문서 선택기를 사용하여 찾아 보는 것이 이상적입니다. 사용자 정의 파일 브라우저를 구현하는 경우 직관적이고 효율적인지 확인하십시오. 파일 브라우저는 매우 그래픽적일 때 가장 잘 작동하여 파일을 시각적으로 표현합니다. 더 빠른 탐색을 위해 사용자가 새 문서를 작성하기 위해 다른 곳으로 이동할 필요가 없도록 새 문서 버튼을 제공하는 것을 고려하십시오.

Let users preview files without leaving your app. You can use Quick Look to let people view the contents of Keynote, Numbers, and Pages documents, PDFs, images, and certain other types of files, even if your app doesn’t actually open them. See Quick Look.

사용자가 앱을 떠나지 않고도 파일을 미리 볼 수 있게 하십시오. Quick Look을 사용하면 Keynote, Numbers 및 Pages 문서, PDF, 이미지 및 기타 특정 유형의 파일을 실제로 열지 않고 미리 볼 수 있습니다.

When appropriate, share files with other apps. If it makes sense, your app can share its files with other apps through a document provider extension. Your app can also let people browse and open files from other apps. For developer guidance, see Document Picker Programming Guide.

적절한 경우 파일을 다른 앱과 공유하십시오. 유효하다면 앱은 document provider extension을 통해 다른 앱과 파일을 공유 할 수 있습니다. 또한 사람들이 다른 앱에서 파일을 찾아보고 열 수 있습니다.

File Handling - User Interaction - iOS - Human Interface Guidelines - Apple Developer

Last updated