Reputation: 431
As we know that IOS doesn't have any support for service workers so working offline feature of PWA doesn't really work on IOS. So my question can we implement the same functionality using Cache Manifest or Application Cache in IOS ?
Upvotes: 2
Views: 330
Reputation: 885
PWA is a term that puts together several technologies like: offline support, add to homescreen, push notifications, background sync, etc.
The appcache supported by Safari will help a bit with the offline support, but unfortunately you won't have the same kind of features you have with service workers.
Some serviceworker tools allow you to fallback to appcache, but you will be missing the rest of the features that will your PWA rock.
Upvotes: 3