我有一个覆盖布局的UIVIew的ViewController。 然后我使用以下(编辑)代码:
UIView *stars = [[UIView alloc] initWithFrame:CGRectMake(starX,starY, starSize, starSize)];
stars.backgroundColor = [UIColor whiteColor];
[self.view addSubview:stars];
调用此方法(特别是最后一行)会导致屏幕上的所有其他UIImageViews重置"重置"回到原来的起始位置。对于我的问题可能会有任何建议,我将不胜感激。
请注意我在编程学习的早期阶段,如果可能的话,请尽量使用描述和语言。提前谢谢。