gpt4 book ai didi

objective-c - 带有 Storyboard的 IBAction subview

转载 作者:行者123 更新时间:2023-12-02 07:35:56 26 4
gpt4 key购买 nike

我正在尝试使用 Storyboard添加 subview 。它显示正确,但 subview 中没有按钮 (IBAction) 可以正常工作,即使代码为空,应用程序在单击时也总是崩溃。

TableViewController.m

...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Load SubView
SubviewViewController *subview = [self.storyboard instantiateViewControllerWithIdentifier:@"SubviewViewController"];
[self.view addSubview:subview.view];
}
...

subview View Controller .m

- (IBAction)btnCloseSubview:(id)sender
{
// Crashes the app when clicked, even empty as it's.
}

最佳答案

您不应该像那样将另一个 View Controller 的 View 添加到您的 View 中,这会给您带来麻烦。当我尝试这样做时,它有时有效,有时无效。正确的方法是将 Controller 也添加为 TableViewController 的 subview Controller :

SubviewViewController *subview = [self.storyboard instantiateViewControllerWithIdentifier:@"SubviewViewController"];
[self addChildViewController: subview];
[subview didMoveToParentViewController:self];
[self.view addSubview:subview.view];

您可能还需要设置 subview View 的框架(subview.view.frame = self.view.bounds 如果您希望它具有相同的大小)。

作为替代方案,您可以在 xib 文件中创建 View 而不是 View Controller ,并将其添加为 View 的 subview 。在这种情况下,您可以将 xib 的文件所有者设置为 TableViewController,并将按钮的方法放在 TableViewController 中。

关于objective-c - 带有 Storyboard的 IBAction subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16534299/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com