본문 바로가기

전체 글179

HIG 번역) Technologies - Accessibility - Color and Contrast Color and Contrast Don’t rely solely on color to differentiate between objects or communicate important information. If your app uses color to convey information, be sure to provide text labels or glyph shapes so color blind users can understand it as well. 색에만 의존하여 객체를 구별하거나 중요한 정보를 전달하지 마세요. 정보를 전달하기 위해 색을 사용한다면, 텍스트 또는 상형문자 모양을 제공하여, 색맹의 사용자가 이해할 수 있도록 하세요. Prefer system colors for text. When.. 2020. 5. 15.
HIG 번역) Technologies- Accessibility - User Interaction User Interaction Assistive technologies like VoiceOver and accessibility features like display accommodations expand the ways people can interact with their devices. Because these technologies and features integrate with system-provided interactions, it's essential that you support the system interactions correctly in your app. VoiceOver와 같은 보조 기술 및 display accomodations와 같은 접근성 특징은 사용자들이 기기와 인터.. 2020. 5. 15.
HIG 번역) Views - Alerts Alerts Alerts convey important information related to the state of your app or the device, and often request feedback. An alert consists of a title, an optional message, one or more buttons, and optional text fields for gathering input. Aside from these configurable elements, the visual appearance of an alert is static and can’t be customized. Alerts는 앱이나 기기의 상태와 관련해 중요한 정보를 전달하고 종종 피드백을 요청합니다. .. 2020. 5. 14.
iOS) Realm을 이용한 Swift Todo 앱 만들기 (2) 아직 갈 길이 멀었지만, 차근차근해볼게요! Todo 앱이면 뭐가 있어야 하죠? 네 맞아요~ ? 바로 일정을 체크하는 기능입니다~ 그래서 이 기능을 체크 표시로 한 번 해보겠습니다! 체크 표시는 뭐냐면 이겁니다 Main.storyboard에서 cell을 선택하면 inspector 패널의 Accessory에서 확인하실 수 있습니다. 아 지금 저걸 설정하라는 것은 아니고 저걸 쓰겠다는 겁니다ㅎ 뭔지 미리 보려는 거ㅎㅎ 그럼 바로 갑니다! 우리가 셀을 클릭했을 때 체크마크가 표시되기 위해서는 Table View Delegate 메서드를 이용해야 해요. Delegate는 '위임하다'라는 의미를 갖고 있는 단어인데, 말 그대로 다른 애(프로토콜)가 일을 대신하는 겁니다. 무슨 말인지 조금 어려울 수 있는데, 저도 .. 2020. 5. 8.