iOS Question How to prevent having an app listed in recent apps?

web-yacht

Member
Licensed User
Longtime User
I've recently posted the same question in B4A forum, and the solution:

B4X:
SetActivityAttribute(Main, android:excludeFromRecents, "true")

works great in Android, thanks.

Now there is something similar in IOS?
 

tufanv

Expert
Licensed User
Longtime User
I dont think ios allows stg like this .
I've recently posted the same question in B4A forum, and the solution:

B4X:
SetActivityAttribute(Main, android:excludeFromRecents, "true")

works great in Android, thanks.

Now there is something similar in IOS?
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
It is not possible. You can remove all the layout in Application_Background and cause the app snapshot to be empty (to hide sensitive information).

or load a new image to the front on Application_Background

Simulator Screen Shot 30 Dec 2016, 9.51.58 AM.jpg



thanx for the tip erel :D
 
Upvote 0
Top