0
我知道這可能是一個愚蠢的問題。但我正在設計一個單視圖應用程序在xcode 3,iOS 5中。編程方式添加一個子視圖和imageview佔據整個屏幕。但它顯示了我在屏幕底部的一個小差距。不知道爲什麼。這是代碼。任何建議?UIView添加子視圖缺口
[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];
您是否在使用Interface Builder?差距有多少像素? – woz
我根本不使用IB。差距是由於我使用的圖像中有一些透明像素。它已經解決。 – mahmud