Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 844
Phil Avatar asked Mar 24 '15 13:03

Phil


1 Answers

Same thing here with Xcode 6.2 in the simulator.

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

like image 77
Adrian Avatar answered Nov 07 '22 11:11

Adrian