从另一个imageview偏移图像视图?

时间:2009-06-13 02:42:29

标签: iphone

我正在尝试将imageviews原点设置为偏离另一个imaeviews原点,但我没有运气全部...我想能够抵消其他imageview,所以它不会直接显示在它上面但是有点图像的左侧或右侧居中并稍微向上。

这是我的代码。

imageView1.center = CGPointMake(imageView2.center.x + 20,imageView2.center.y + 35);

1 个答案:

答案 0 :(得分:1)

可能更容易处理起源......

    kOffset = 5;

    kWidth = 50

    kHeight = 50;

    CGRect frame = CGRectMake(0,0, kWidth, kHeight);

    UIImageView *theImage;


for(int i = 0; i<numberOfImages; i++){ 


    theImage = [[UIImageView alloc] initWithFrame:frame];

    frame.origin.x += (kWidth + kOffset);
}