2011-08-01 54 views

回答

1

你可以使用:

NSLog(@"Object.x: %f, Object.y: %f", CGRectGetMinX(object.frame), CGRectGetMinY(object.frame)); 

或者,你可以像這樣的中心:

NSLog(@"Object.x: %f, Object.y: %f", object.center.x, object.center.y); 
+0

工作完美,謝謝! –

2

你也可以做

NSLog(@"position: %@",NSStringFromCGPoint(object.center)) 

或..什麼有時是更有趣的框架座標:

NSLog(@"frame: %@",NSStringFromCGRect(object.frame)) 
+0

這涉及更少的鍵入+1。 –

相關問題