I\'m trying to test if a property has been set yet. I know that with objects that I\'ve got:
CGRect ppGoalFrame; LocalPlaySetup *localPlaySetup;
From CGGeometry.h:
CGGeometry.h
/* Return true if `rect' is empty (that is, if it has zero width or height), false otherwise. A null rect is defined to be empty. */
an empty rectangle is one that has no area, where on or both sides are zero. Use instead:
CGRect newRect = CGRectNull;