8

The DataMan app on the AppStore (DataMan Lite a free version of the App) helps to Monitor your Data Usage. http://www.iphonelife.com/blog/2686/monitor-your-data-usage-dataman

Can someone please elaborate how data usage can be monitored while running in the background.

srihariv
  • 159
  • 6
  • 3
    You may get some idea from this: http://stackoverflow.com/questions/7946699/iphone-data-usage-tracking-monitoring – Sahil Khanna Nov 03 '11 at 10:09

1 Answers1

1

Actually this kind of applications does nothing in background. As in the apple developers reference, every application goes to suspend mode when the user press the home button (except for some applications like voip or gps-aware or etc.) To monitor data traffic some api functions should be called. These functions return the traffic data statistics even when your application is terminated or in suspend mode. then you may analyze and calculate whatever you want.

For more info: Monitoring network usage excluding local traffic

Community
  • 1
  • 1