iOS Question Application life cycle: B4A vs B4i

b4auser1

Well-Known Member
Licensed User
Longtime User
If B4A app has only one Activity, then can I treat events in B4i app this way ?

Application_Start ~ Activity_Create
Application_Background ~ Activity_Pause (UserClosed As Boolean)
Application_Foreground ~ Activity_Resume
Application_Active ~ -
Application_Inactive ~ -
Application_OpenUrl ~ Activity_Create
 

b4auser1

Well-Known Member
Licensed User
Longtime User
It's more correct ?

Application_Start ~ Starter.Service_Create
Page*_Resize ~ Activity_Create (if f.e. device rotated)
Application_Background ~ Activity_Pause (UserClosed As Boolean)
Application_Foreground ~ Activity_Resume
Application_Active ~ -
Application_Inactive ~ -
Application_OpenUrl ~ Activity_Create
 
Upvote 0
Top