iRoid Solutions
iRoid Solutions

Reputation: 425

How to display a our popup before other installed application startup?

Currently, I am working on one security application. In this application, user can select applications for which he/she want to have additional security.

So, before this selected application start, one 'popup/screen with question' will be displayed. and if user answers it right, popup will be dismissed.

So my question is, is it possible to display our popup/screen before other installed application startup?

And if yes, then how to do it?

I searched on google, but didn't find any useful.

Any help would be greatly appreciated.

Thanks

Upvotes: 0

Views: 138

Answers (2)

Sumit Mundra
Sumit Mundra

Reputation: 3901

this is not possible.In iOS, Application run in its own sandbox environment so you cannot get any application information. this is only done in jailbreak programming. In witch you hook app startup method method and show your popup first.

Upvotes: 1

Saurabh Passolia
Saurabh Passolia

Reputation: 8109

in iOS, Application run in its own sandbox environment. You cannot control other application's startup and hence this is not feasible using any apple documented APIs.

Upvotes: 3

Related Questions