UIImageViews - 图层

时间:2009-03-14 13:03:36

标签: cocoa-touch core-animation

我有2个UIImageViews,IMG1和IMG2。有些人我希望IMG1出现在IMG2之上,有时我希望IMG2出现在IMG1之上。我该怎么做?

2 个答案:

答案 0 :(得分:3)

尝试使用

[self.view bringSubviewToFront:myImageView];

答案 1 :(得分:3)

此外,

[self.view exchangeSubviewAtIndex:imageView1Index withSubviewAtIndex:imageView2Index];
如果您知道相应视图的索引,

可能会这样做。