xpepermint
xpepermint

Reputation: 36263

iPhone memory testing

I'm testing iPhone allocations. I have a UITableView with 3 custom cells. When I switch between 2 views Malloc parameter is rising for about 0.1KB.

enter image description here

Is that normal? No leaks found.

Upvotes: 0

Views: 156

Answers (2)

fabian789
fabian789

Reputation: 8412

The Simple Rule: Only fire up Instruments if your app lags on an actual device.

Extension to The Simple Rule: Fire up Instruments to search leaks, but don't worry if they are from Apple libraries.

Upvotes: 1

user142019
user142019

Reputation:

The view needs to render again, this costs some memory, especially for the transitioning animation.

I don't think 100 bytes are something you need to be afraid of, but I'm pretty sure this is normal.

Upvotes: 0

Related Questions