2

I have done my development for iOS application, want to figure out the performance of my application at mobile end.

Is there a tool that I can measure the performance of app for front end along with services APIs.

kiran
  • 4,285
  • 7
  • 53
  • 98

2 Answers2

1

Xcode comes with Instruments.app. You can profile all kinds of things in there, both on the simulator and on a real device. Find it in Xcode under Product > Profile.

Rengers
  • 14,911
  • 1
  • 36
  • 54
1

Check Instruments.app.

If you want to measure response time i think is not revelant because its depends of connectivity, but you can checkout firebase tools i actually using https://firebase.google.com/docs/perf-mon/

I suggest to put some timers in some portions of your code like this: How to benchmark Swift code execution?

p1ckl3
  • 177
  • 1
  • 4