1

when you wish to know the text of a label you use labelName.text what is the equivalent for image.center?

4

2 回答 2

2

image.center 正是您使用的。

NSLog(@"%@",NSStringFromCGPoint(image.center));
NSLog(@"%f",image.center.x);
NSLog(@"%f",image.center.y);
于 2012-04-29T22:41:43.030 回答
0

好吧..它似乎没有属性...奇怪(或者我不知道它..lol)

做类似的事情:

CGPoint imageCenter=CGPointMake(image.size.width/2,image.size.height/2);
于 2012-04-29T21:12:21.420 回答