Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i get background running applications detail in my Application for iOS?

I want to develop one application which should be monitoring how much application is running on how much time on my I-Phone Device(including internet browsers).

Please share your idea regarding this post.

little similar like this: https://itunes.apple.com/us/app/system-manager/id455736462?mt=8

thanks

like image 867
Raj Avatar asked Nov 21 '12 11:11

Raj


1 Answers

You really can't since Apple has placed very restrictive guidelines on Apps for iOS. Although with some low level call you might get some running process information.

Because of the sandbox environment you might not be abele to much more information then that.

Also app's in background are suspended if they have no background running flaggs (voip, audio, location or accessory). Also if the system gets low on memory app that are suspended get killed and there memory freed up.


What you can do:

  • Try the List of All Processes OS X code which
  • Can we retrieve the applications currently running in iPhone and iPad

But keep in mind the restiction placed on you app by Apple: The iOS Environment, thus that there are app availble in the appstore that do what you want does not mean that you app will be allowed.

like image 98
rckoenes Avatar answered Sep 21 '22 23:09

rckoenes