Is it possible to open an iOS app in the background, without any user interaction?
We can use private frameworks for this.
I don't need to worry about App Store submission, as the app is for enterprise distribution.
Is it possible to open an iOS app in the background, without any user interaction?
We can use private frameworks for this.
I don't need to worry about App Store submission, as the app is for enterprise distribution.
You can probably implement Location services taking permission for always using
let manager = CLLocationManager()
manager.requestAlwaysAuthorization()
this will wake your app in the background or keep the app alive while location services are on.
or you can use CallKit which will also help keeping your app alive in the background. Since you will not be deploying the app on app store you dont have to worry about the approval from apple.
But none of these will let you launch the app in foreground. Of course if you plan it out you can still do a lot in the background with these frameworks.