我创建了 Class 并将其添加到非 arc 项目的当前视图中。之后我将它作为这个发布。
TestViewController *tView=[[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
tView.view.frame=CGRectMake(10, 10,tView.view.frame.size.width , tView.view.frame.size.height);
[self.view addSubview:tView.view];
[tView release];
我向 TestViewController 添加了按钮,当按下它时它会崩溃并从控制台查看此消息。
-[TestViewController performSelector:withObject:withObject:]: message sent to deallocated instance
任何人都可以解释其中的原因吗?