211019 TIL 모바일 앱 코딩 (학습87일차)

김영진·2021년 10월 21일
0

오늘은 모바일 앱 코딩을 위해 iOS에서 사용할 수 있는 meta태그들에 대해 학습했다.

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 상태 바의 색상을 정하는 코드 -->
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- 모바일 웹을 웹앱 형태로 설정하는 코드 -->
<meta name="apple-mobile-web-app-capable" content="yes" />

<!-- 바로가기 아이콘, 아이폰, 안드로이드 둘다 적용 -->
<link rel="apple-touch-icon-precomposed" href=".png" />
<!-- 인트로 화면을 설정하는 코드 -->
<link rel="apple-touch-startup-image" href=".png" />
profile
UI개발자 in Hivelab

0개의 댓글