Definition
Safari share sheet install
On iOS, installing a PWA requires the user to manually tap the Share icon in Safari's toolbar, then choose "Add to Home Screen" from the resulting menu — there is no beforeinstallprompt equivalent, no browser-generated install banner, and no way for a site to trigger this flow programmatically.
Because the flow is entirely manual and hidden a level deep in the share sheet, discoverability is the main practical challenge — sites commonly show an in-page instructional overlay (with an icon pointing at the share button) the first time an iOS Safari visitor arrives, rather than relying on the user finding it unprompted.
Safari reads name, short_name and icon information from the manifest for the resulting home-screen entry, but historically also honours legacy apple-touch-icon and apple-mobile-web-app-* meta tags, so a page targeting iOS well should include both the manifest and those tags for consistent results across older and newer iOS versions.
The flow is only available from Safari itself; other iOS browsers (Chrome, Firefox, Edge for iOS) are required by Apple's platform policy to use Apple's WebKit engine but historically have not all exposed the same "Add to Home Screen" share-sheet action, so PWA install messaging on iOS typically has to specifically target Safari.
There is no appinstalled event or any other JavaScript signal fired when this flow completes, so the only way to detect a resulting installed launch is checking navigator.standalone at the start of a later session.