Basic xcode debugging question
Basic xcode debugging question
- Subject: Basic xcode debugging question
- From: Maximino Salazar-Lechuga <email@hidden>
- Date: Mon, 23 Feb 2004 16:29:30 +0000
Hi,
I'm new to xcode and been looking for an answer to a simple question
without any luck. I'm debugging a program which uses pointers of the
type:
double *pop;
where pop is an array of values. Is there an option in the debugger to
see all the values in that array?
Because the value given by the debugger is a memory location (and the
first value in that location), but I'm interested in the value at that
location and also the followings, not just the first one. One option
is to define each of the values I want to see in the "Expressions"
window, like:
pop[0]
pop[1]
...
and so on...
But when the array is so big, this is obviously not an option.
Any guidance on this matter will be very appreciated.
Thank you, Max.
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.