Как показать значок при добавлении в закладки в IOS Safari? - PullRequest
0 голосов
/ 15 апреля 2019

Я занимаюсь разработкой приложения ReactJS.

Я хотел бы показать значок при добавлении закладки, как на следующем рисунке, например, с помощью Google.

enter image description here

Я попробовал следующий код в index.html, но все еще не работает. (Значок может отображаться, если я добавляю на главный экран, но не работаю в добавлении в закладки)

<head>
<title>Testing Web</title>
<meta name="viewport" http-equiv="X-UA-Compatible" content="IE=edge,chrome=1, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" charset="utf-8">
<meta name="format-detection" content="telephone=no,email=no,address=no"> 
<link rel="shortcut icon" href="favicon.ico">

<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">

<link rel="apple-touch-icon" href="cIcon.png">

<link rel="apple-touch-startup-image" href="cIcon.png">
<meta name="apple-mobile-web-app-title" content="Test Web">

<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">

<link rel="apple-touch-icon-precomposed" href="cIcon.png">

Кто-нибудь может помочь?

Спасибо

...