我想在表格视图内部制作表格视图。我的意思是,我该如何制作一个单击某个单元格的应用程序,使其单击另一个单元格列表以单击该子类?

最佳答案

卷积的答案包含内存泄漏。正确的代码应如下所示:

MySecondViewController *secondController = [[MySecondViewController alloc]
    initWithNibName: @"SecondViewController" bundle: nil];
if (secondController != nil) {
    [self.navigationController pushViewController: secondController animated: YES];
    [secondController release];
}
release是必不可少的。否则会泄漏内存。

08-05 22:11