我知道这也许是一个愚蠢的问题。但我正在设计一个 xcode 3, ios 5. 的单视图应用程序, 程序上添加一个子视图和图像视图, 以进入整个屏幕。 但是它显示在屏幕上我视野的底部有一个小缺口。 不知道为什么。 这是代码。 任何建议吗?
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
homeView =[[UIView alloc] initWithFrame:self.view.frame];
UIImageView *backImage= [[UIImageView alloc] initWithFrame:self.view.frame];
backImage.image=[UIImage imageNamed:@"bg.png"];
[homeView addSubview:backImage];
[self.view addSubview:homeView];