[SOLVED] Viewport help - ios

Hi there,

I have some issues with the resolution in ios devices. Android looks OK but in iOS letter are too big.

It seems that is ignoring the viewport tag, not sure why.

any suggestion?

Thanks!

Tried different options

<head>
	<meta charset="UTF-8">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta name="viewport" content="initial-scale=1, width=device-width, height=device-height, viewport-fit=cover">
    <meta name="apple-mobile-web-app-capable" content="no">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="format-detection" content="telephone=no">
    <meta name="msapplication-tap-highlight" content="no">

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
	<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">

Вы не подключили splashsceen определенного размера. Но лучше переходить на storyboard. Это все нужно сделать в config.xml

Вот здесь подробно: https://medium.com/@photokandy/phonegap-build-supports-ios-launch-storyboards-44a4180bfafe

Thanks. I just did the build with phonegap instead of xcode and it works fine.