有没有办法让背景图像在导航控制器的所有视图中保持不变?目前我在每个视图的viewDidLoad
方法中加载相同的背景,但这显示了在视图之间导航时背景图像的移动。我宁愿只是背景“幻灯片”开/关屏幕前的视图内容,但背景保持静止。这是我当前的背景图片加载代码:
UIImageView *background = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
background.image = [UIImage imageNamed:@"InfoBackground.png"];
[self.view addSubview:background];
[self.view sendSubviewToBack:background];
[background release];
谢谢!