我有一个只有一个视图的项目。我正在以编程方式在其上绘制所有内容。因此,当我想向我的项目添加另一个视图(屏幕)时,我创建了一个继承自 UIViewController 类并实现方法的类
- (void)viewDidLoad
然后我想从我的原始视图加载这个视图,我这样做:
在ViewController.h
#import <UIKit/UIKit.h>
#import "TestViewControllerClass.h"
@interface ViewController : UIViewController <UITableViewDataSource> {
}
@property (strong,nonatomic) TestViewControllerClass *testView;
@end
在ViewController.m中
@implementation ViewController
@synthesize testView;
- (void)viewDidLoad
{
[super viewDidLoad];
testView = [[TestViewControllerClass alloc] init];
[self.view addSubview:testView]; //crash here
}
然后在我的TestViewControllerClass.h
#import <UIKit/UIKit.h>
@interface TestViewControllerClass : UIViewController
@end
和TestViewControllerClass.m
- (void)viewDidLoad
{
[super viewDidLoad];
}
为了检查方法wiewDidLoad是否会被执行,我放了一个断点,但什么也没发生。事实上,我的应用程序崩溃了(我在代码中添加了注释)。
当我收到崩溃时:-[TestViewControllerClass superview]: unrecognized selector sent to instance 0x683aca0