Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to monitor my core data usage but all the Core Data instruments are greyed out in Instruments. It's also not available from the "Run with Performance Tool" in Xcode. It says that the Core Data instruments are for the Mac and it's not available on the iPhone, but I've heard people talking about using it, and it's mentioned in the Apple docs too.

How can I get them working?

Thanks!

share|improve this question

1 Answer

up vote 11 down vote accepted

You can run Core Data instruments against the simulator only, not the device.

Open Instruments and select the Core Data items you want, then use Instruments to launch the simulated iPhone app, instead of launching from Xcode.

Hopefully this support is better in future versions. Also, I believe it only works with 3.1, not 3.0.

share|improve this answer
Ah got it working on the simulator! Thanks for that! I'm sure it wasn't working before, must have been playing up! – Michael Waterfall Nov 26 '09 at 1:13
2  
The Core Data instruments on the Mac rely on DTrace. Since we don't have DTrace on the iPhone yet, I'm not surprised that they only work against the Simulator (like custom DTrace scripts do). – Brad Larson Nov 26 '09 at 2:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.