views:

319

answers:

1

is there a way to monitor how much data(internet) each application used?

if I cannot monitor applications is there a way to get all internet requests information? (get data passed, url, etc)

(I would like to use this info in an app Im developing for iphone)

Thanks

+1  A: 

No, you only have access to your own application's sandbox, and therefore can only track the network usage of your own application.

Alex Reynolds
Thanksis there some kind of system object that can throw an event every time a connection is open?or some other workaround?
Jasmine
The Reachability sample project will throw a notification when network reachability options change, but that wouldn't help you with tracking usage. You could jailbreak the phone. That's the only workaround I know.
Alex Reynolds