gpt4 book ai didi

IOS导航到新 View 但出现黑屏

转载 作者:行者123 更新时间:2023-11-29 01:04:27 26 4
gpt4 key购买 nike

我已通过下 TableView 委托(delegate)方法导航到具有 View 的新类,但返回黑屏。

#import "NewClass.h"

- (void)tableView: (UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName: @"MainStoryboard" bundle: [NSBundle mainBundle]];
NewClass *new = [storyboard instantiateViewControllerWithIdentifier: @"newDetail"];
new.array = localArray;
[self presentViewController: new animated: YES completion: nil];
}

我在新类上有 NSLog 数组,并且在新类中接收到数据,所有 Storyboard 名称、标识符标签都正确放置,但我不知道为什么我仍然黑屏,谁能帮我指出那里的错误原因是什么?

最佳答案

试试这段代码:

- (void)tableView: (UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath 
{
UIStoryboard * storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
NewClass * new = [storyboard instantiateViewControllerWithIdentifier:@"newDetail"];
new.array = localArray;
[self.navigationController pushViewController:new animated:YES];
}

关于IOS导航到新 View 但出现黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36572567/

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