在没有固定位置的情况下为图像添加子视图

时间:2011-10-14 15:48:10

标签: iphone xcode uiimageview rotation subview

每一个人,我都有一个用加速度计旋转的图像'图像',我想为它增加一个子视图'subimage',子图像随图像一起旋转,所以子视图正在移动。我不要我想解决它的位置subimage.view.frame = CGRectMake(0, 100, image.view.frame.size.width, image.view.frame.size.height);我该怎么办呢?对不起我的英语我是法国人:/

1 个答案:

答案 0 :(得分:1)

可能是你的意思:

 view.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
 view.autoresizesSubviews = YES;

? 它将根据设备方向自动调整您的图像和子视图。