Phil
Phil

Reputation: 4870

XCODE 6 Allocation Instruments don't show own class name

I create my own class : BNRItem.m

I would like to monitor this class with instrument tool for XCODE6 but I do not achieve to see my class on category column when I call it from the simulator.

When a BNRItem is created, a new line is displayed, with "malloc 4KB" on category column. But it should be "BNRItem" instead of "malloc" !

What I'm suppose to do ?

enter image description here

Upvotes: 7

Views: 995

Answers (1)

Adrian
Adrian

Reputation: 1595

Same thing here with Xcode 6.2 in the simulator.

The only workaround I've found is to profile on the device. That works.

Upvotes: 8

Related Questions