我的主视图上有一个子视图,使用点击弹出。
我为其设置了背景图像,但现在标题已被覆盖。我需要做什么来解决这个问题?我应该更改 viewDidLoad 中的任何内容吗?
这是我添加背景图像的方式:
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"test.png"]];
imageView.frame = CGRectMake(0.0, ViewHeight, kDeviceWidth, 230.0);
container.opaque = NO;
container.backgroundColor = [UIColor clearColor];
[self.formView addSubview:imageView];
[self.formView addSubview:frame];