3
On Android it is possible to send notifications, make queries via http, execute methods, all through a Service without the user need to necessarily run the application, just the fact that the service is active, everything happens naturally. I see that on iOS there is no such concept of Services.
How do I run a simple method (from time to time) without the user having to open the application manually, ie a concept of "Service".
Hello, what’s the real need for a
service
running? As I mentioned in the other question, background on iOS is quite limited. If you are building an app from a code/app made for Android that makes intense use of this Feature you will have big problems if you do not try to restructure your architecture to the limitations of iOS.– Otávio