What are the performance tools available for cocoa application development?

devquora
devquora

Posted On: Feb 22, 2018

 

The following performance tools are available for cocoa application development:
  • Instruments- the instruments are used to display memory statistics, CPU usage, disk data, network statistics and thread activities.
  • Big top-big tops show the graph performance trends
  • Malloc debug- This gives us an insight into how much memory is allocated to different functions. It tells us how much memory a function is consuming and also finds leaks by checking allocated memory that is not referenced anywhere in the program.
  • Shark- shark tracks function calls and graphs memory allocation.
  • Quartz debug- it helps debug applications that do large amounts of drawing.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Cocoa Touch Interview Questions

    What do you understand by cocoa?

    Cocoa is a suite of object-oriented software libraries that develop OSX and iOS apps. Cocoa is an application environme..

    Cocoa Touch Interview Questions

    Elaborate on the meaning of Application Kit.

    Application kit is a framework that contains all the objects and details needed to implement the graphical and event-dri..