Hi,
Thanks for looking at my question.
I have been trying to look around and I have been playing around with low level IVars to get information from the classes. I am having trouble trying to load the values that come from CGPoint.
CGPoint point;
object_getInstanceVariable(obj, [columnName UTF8String], (void **)&point);
NSLog(@"%@", NSStringFromCGPoint(point));
The output of this should be {220,180}
The i am actually getting {220, 1.72469e-38}
Could anyone help me out and explain why this might be happening?