ストーリーボードを使用してサブビューを追加しようとしています。IBAction
正しく表示されていますが、サブビューに正しく機能するボタン ( ) がなく、空のコードであっても、クリックするとアプリが常にクラッシュします。
TableViewController.m
...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Load SubView
SubviewViewController *subview = [self.storyboard instantiateViewControllerWithIdentifier:@"SubviewViewController"];
[self.view addSubview:subview.view];
}
...
SubviewViewController.m
- (IBAction)btnCloseSubview:(id)sender
{
// Crashes the app when clicked, even empty as it's.
}