Greg
Greg

Reputation: 3

background processes iPhone iOS4 (Objective-c)

are there any way to get list of background processes and handle them at iPhone iOS4 on my own program? which part of apple api include that ? is it possible at all? or OS defends this processes ? pls give me some guide or advice thank you very much

Upvotes: 0

Views: 698

Answers (1)

Lily Ballard
Lily Ballard

Reputation: 185841

You can find out what processes are running using the sysctl API (look at the kern.proc namespace), but you can't affect them in any way.

Upvotes: 1

Related Questions