본문 바로가기

전체 글179

HIG 번역) Controls - Context Menus Context Menus In iOS 13 and later, you can use context menus to give people access to additional functionality related to onscreen items without cluttering the interface. iOS 13 이상의 버전에서 context menus를 사용하여 사용자들에게 인터페이스를 복잡하지 않으면서 화면 속의 항목들과 관련된 추가적인 기능을 제공할 수 있습니다. Context menus are similar to Peek and Pop, but with two key differences: Context menus는 Peek, Pop과 비슷하지만, 두 가지 중요한 다른 점이 있습니다: Supp.. 2020. 5. 22.
Git) commit message 수정하기 커밋 메시지는 다음 두 가지 경우에 따라 수정하는 방법이 다릅니다! 1. 마지막 커밋 메시지를 수정하려는 경우 2. 그 외의 경우 1. 마지막 커밋 메시지를 수정하려는 경우 다음 키워드를 통해서 수정하려는 메시지를 바로 입력해주시면 됩니다! $ git commit --amend -m'새로운 메시지' $ git push -f 2. 그 외의 경우 수정하고자 하는 커밋이 최종 커밋으로부터 8번째네요! 그럼 터미널에 아래의 명령어를 입력해주세요! $ git rebase -i HEAD~8 // 숫자는 첫 번째(HEAD)를 기준으로 몇 번째까지 불러올지를 정합니다. i(영어로 자판을 변경한 후 누르셔야 해요!)를 눌러 입력 모드로 변경하고, 수정하고자 하는 커밋의 앞의 키워드를 edit으로 바꿔줍니다! 그리고는 e.. 2020. 5. 21.
HIG) Technologies - Accessibility - Content 번역 Content Copy, images, audio, and video supply the information that people want from your app. You can help make your content accessible to everyone by striving for simplicity of expression and providing alternative versions of the information. 카피, 이미지, 오디오 및 영상은 사용자가 앱에서 원하는 정보를 제공합니다. 표현의 단순성을 위해 노력하고 정보의 다른 버전을 제공함으로써 모든 사람들이 콘텐츠에 접근 가능하도록 도움을 줄 수 있습니다. Copy and Images Edit copy so that it is .. 2020. 5. 15.
HIG 번역) Technologies - Accessibility - Text Size and Weight Text Size and Weight When designing an inclusive app, keep text size, weight, and layout in mind for clarity and readability. To learn how color and contrast can affect the legibility of text in your app, see Color and Contrast. 다양한 앱을 디자인할 때, 명료함과 가독성을 위해서 테스트 크기와 두께 및 레이아웃을 기억하세요. 색과 대비가 앱에서 텍스트의 가독성에 어떻게 영향을 미칠 수 있는지 배우려면, 다음 문서를 확인하세요. Use Dynamic Type and test that your app's layout adapts .. 2020. 5. 15.