我在我的項目中創建了一個UIViewController的子類,並將它鏈接到由「RootViewController」推送的View。我對派生類完全沒有改變,但是當「SecondView」被推入時,它每次都變黑。如果我將該視圖鏈接到標準的UIViewController類,一切正常?UIViewController的子類顯示黑屏
由於「SecondViewController」派生自UIViewController,我只能猜測問題與alloc/init函數有關,但我不知道從哪裏開始。
如有必要,我可以提供示例代碼,我現在在我面前。
這是所導出的亞類:
#import "SecondViewController.h"
@interface SecondViewController()
@end
@implementation SecondViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self; }
- (void)loadView {}
- (void)viewDidLoad {
[super viewDidLoad]; }
- (void)viewDidUnload {
[super viewDidUnload];}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait); }
@end
部首:
#import <UIKit/UIKit.h>
@interface SecondViewController : UIViewController
@end
把代碼請好,它會幫助我們很多 – 2012-03-01 08:01:50
完成。希望有所幫助。 – user1242094 2012-03-01 08:27:45
解決了它。 由於意外,我偶然發現了「相關」部分中的一個主題。 我不知道爲什麼,但刪除後刪除 - (void)loadView 函數一切工作正常。 由於子類是由Xcode自動生成的,因此仍然很奇怪。 – user1242094 2012-03-01 09:08:38