HIG

[iOS / HIG] Interface Essentials

Minny27 2022. 3. 5. 11:53

Interface Essentials

Most iOS apps are built using components from UIKit, a programming framework that defines common interface elements. This framework lets apps achieve a consistent appearance across the system, while at the same time offering a high level of customization. UIKit elements are flexible and familiar. They’re adaptable, enabling you to design a single app that looks great on any iOS device, and they automatically update when the system introduces appearance changes. The interface elements provided by UIKit fit into three main categories:

대부분의 iOS 앱은 공통 인터페이스 요소를 정의하는 프로그래밍 프레임워크인 UIKit의 구성 요소를 사용하여 구축됩니다. 이 프레임워크를 통해 앱은 시스템 전체에 걸쳐 일관된 모양을 갖추는 동시에 높은 수준의 사용자 정의를 제공할 수 있습니다. UIKit 요소는 유연하고 친숙합니다. 이러한 기능은 적응력이 뛰어나서 모든 iOS 기기에 잘 어울리는 단일 앱을 설계할 수 있으며, 시스템이 모양을 바꾸면 자동으로 업데이트됩니다. UIKit이 제공하는 인터페이스 요소는 세 가지 주요 범주로 나뉩니다.

 

Bars. Tell people where they are in your app, provide navigation, and may contain buttons or other elements for initiating actions and communicating information.

바. 앱에서 사용자의 위치를 알리고, 탐색 기능을 제공하며, 작업을 시작하고 정보를 전달하기 위한 단추 또는 기타 요소를 포함할 수 있습니다.

 

Views. Contain the primary content people see in your app, such as text, graphics, animations, and interactive elements. Views can enable behaviors such as scrolling, insertion, deletion, and arrangement.

보기. 텍스트, 그래픽, 애니메이션 및 대화형 요소와 같은 앱에서 볼 수 있는 기본 콘텐츠를 포함합니다. 보기는 스크롤, 삽입, 삭제 및 배열과 같은 동작을 활성화할 수 있습니다.

 

Controls. Initiate actions and convey information. Buttons, switches, text fields, and progress indicators are examples of controls.

컨트롤입니다. 작업을 시작하고 정보를 전달합니다. 버튼, 스위치, 텍스트 필드 및 진행률 표시기가 컨트롤의 예입니다.

 

In addition to defining the interface of iOS, UIKit defines functionality your app can adopt. Through this framework, for example, your app can respond to gestures on the touchscreen and enable features such as drawing, accessibility, and printing.

UIKit은 iOS의 인터페이스를 정의하는 것 외에도 앱이 채택할 수 있는 기능을 정의합니다. 예를 들어, 이 프레임워크를 통해 터치 스크린의 제스처에 응답하고 그리기, 내게 필요한 옵션 및 인쇄와 같은 기능을 활성화할 수 있습니다.

 

iOS tightly integrates with other programming frameworks and technologies too, such as Apple Pay, HealthKit, and ResearchKit, enabling you to design amazingly powerful apps.

'HIG' 카테고리의 다른 글

[iOS / HIG] Dark Mode  (0) 2022.03.10
[iOS / HIG] Launch Screen  (0) 2022.03.10
[iOS / HIG] Sheets  (0) 2022.03.03
[iOS / HIG] Modality  (0) 2022.03.03
[iOS / HIG] Popovers  (0) 2022.03.03