我正在尝试使用情节提要添加子视图。它显示正确,但子视图中没有按钮 ( IBAction
) 可以正常工作,即使使用空代码,单击时应用程序总是崩溃。
表视图控制器.m
...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Load SubView
SubviewViewController *subview = [self.storyboard instantiateViewControllerWithIdentifier:@"SubviewViewController"];
[self.view addSubview:subview.view];
}
...
子视图控制器.m
- (IBAction)btnCloseSubview:(id)sender
{
// Crashes the app when clicked, even empty as it's.
}