在imageView上居中一层

时间:2012-02-21 11:20:22

标签: xcode uiimageview imageview center layer

嗨,这里的每一个都是来自我的iphone模拟器的图像,向你展示我的问题。(在我的图层右侧是一个图像)。我添加一个图层作为imageView的子图层,我想将我的图层放在中心我的imageView但我不知道怎么做?谁能帮我 ?对不起我的英语我是法国人:/

image from my iphone simulator

1 个答案:

答案 0 :(得分:2)

您必须设置添加到图像边界中心的图层的锚点或位置。

的内容
[boxLayer setPosition:CGPointMake([self bounds].size.width /2, [self bounds].size.height /2)];