I want to make a background service app in iOS
just like we have Intent-filter in android(without an activity) which in invisible to user but still exits on the device.
I need to keep a database file in this service app which user only need to instal in the device, but is not launchable or visible to user.
I've tried using SBAppTags in info.plist
and it successfully hides the app icon from springboard but only for simulator and not for real iPhone device. As of iOS 8, Apple has closed off the SBAppTags feature so that one cannot use that to hide apps from springboard. Is there anything else that can be used in iOS similar to this?
In android, I've created Intent-filter for the service app which only needs to be installed once from the play store and thereafter remains invisible to user.
If anyone has done something similar in iOS, please comment below.