2012-05-25 88 views
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]; 
+0

您是否在使用Interface Builder?差距有多少像素? – woz

+0

我根本不使用IB。差距是由於我使用的圖像中有一些透明像素。它已經解決。 – mahmud

回答

0

該差距是由於我使用的圖像中的一些透明像素。代碼沒有錯。它已經解決。 謝謝

相關問題