You are on page 1of 1

Never ship an app without running it through

Instruments first!part1
But, what are instruments?

Instruments ship as part of Xcode and are responsible for profiling your app. "Profiling" is the

term used when we monitor the performance, memory usage, and other information of an app,

with the aim of improving efficiency.

your user interfaces will be smoother, your code will run faster, and you'll avoid wasting memory,

all using a tool that's completely free and you already have installed.

Example:

more than 90% of our applications deal with UITableViewController that displays a list of data

that may contain images, we found that when scrolling the images are slowly loaded and this

gives a bad experience to the User.

with instruments you can detect and fix this problem it may be caused due to off-Screen

rendering, large images that need to be scaled down before usage.

after fixing those issues your app will be smoother.

to be continued ...

You might also like