iOS Question B4a to B4i Service module

Carlos marin

Active Member
Licensed User
Longtime User
Hi all
I'm passing an application from b4a to b4i. I use a service to monitor the purchase status

Example In b4A
B4X:
Sub Service_Start (StartingIntent As Intent)
StartServiceAt("", DateTime.Now + 20 * DateTime.TicksPerSecond, True)
        Query="SELECT * FROM s_pedidos WHERE orden = '" & orden & "' and estado <> '" & "Entregado" & "'"
End Sub

I know that IOS has no services but there is some correct way to do this?
Thank you
 
D

Deleted member 103

Guest
Hi all
I'm passing an application from b4a to b4i. I use a service to monitor the purchase status

Example In b4A
B4X:
Sub Service_Start (StartingIntent As Intent)
StartServiceAt("", DateTime.Now + 20 * DateTime.TicksPerSecond, True)
        Query="SELECT * FROM s_pedidos WHERE orden = '" & orden & "' and estado <> '" & "Entregado" & "'"
End Sub

I know that IOS has no services but there is some correct way to do this?
Thank you
It's best to do this test at each app launch.
 
Upvote 0
Top