모바일 웹에서 마켓으로 이동하기
구글 플레이스토어나 앱스토어로 이동하기
var userAgent = navigator.userAgent;
if(userAgent.match(".*Android.*")){
location.href = "https://play.google.com/store/apps/details?id=com.xxxxxx.m";
}else if(userAgent.match(".*iPhone.*") || userAgent.match(".*iPad.*")){
location.href = "https://itunes.apple.com/app/id1234567890";
}
'iOS' 카테고리의 다른 글
Xcode에 Pod 라이브러리 적용하기 (0) | 2019.12.02 |
---|---|
아이폰, 안드로이드 마켓이동 (0) | 2019.07.01 |
iOS Swift WKWebView 자동로그인, 쿠키저장 (0) | 2019.06.24 |
모바일웹에서 앱 호출하기 (0) | 2019.06.19 |
iOS Swift 일정시간 지연후 실행, 타이머 (0) | 2019.06.11 |