タップを使用してポップアップするメイン ビューにサブビューがあります。
背景画像を設定しましたが、タイトルが隠れてしまいました。これを修正するために何をする必要がありますか? 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];