I want to have some UILabels and UIImages animate, and although I can get the center coords with the following code:
Code:
NSLog(@"the center point of grid center is %f,%f", myLabel.center.x, myLabel.center.y );
It seems to me there must be an easier way to move an object in storyboard and then see its coords so I can code my animation.
Rather than copy down all my original coords, move all the objects then run the program with a pile of NSLogs and check all the new coords so i can enter them into the animation code, and then move everything back to its original position.
Anyone have a better way?