• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 以编程方式打开一个新的 View Controller 给我一个黑屏

[复制链接]
菜鸟教程小白 发表于 2022-12-13 03:02:45 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我检查了类似的问题,但没有一个适合我的情况(他们都提到了我没有的函数 loadView)。我认为我想做的事情很容易,但我不知道为什么会这样。

我希望在按下单元格中的按钮时以编程方式打开新的 View Controller 。这是我的代码:

- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
    dealViewController=[[DealViewController alloc]init];
    if (indexPath.row==0){
        [self presentModalViewControllerUIViewController *)dealViewController animated:TRUE];
    }

}

在我的另一个 Controller 中:

@implementation DealViewController

- (id)initWithNibNameNSString *)nibNameOrNil bundleNSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    NSLog(@"Opened");
}

Opened 已打印,但模拟器显示黑屏。我也试过这个:

dealViewController=[[DealViewController alloc]initWithNibName"DealViewController" bundle: nil];

但我遇到了段错误。我做错了什么?



Best Answer-推荐答案


试试这个:

Apple Doc for StoryBoard

另外,您可以通过 performSegue:withIdentifier 来完成。

A Good Tutorial on same

   - (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
    {
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName"<Your StoryBoard_Name" bundle:nil];

    dealViewController=[storyboard instantiateViewControllerWithIdentifier"ViewController_Identifiter"];
        if (indexPath.row==0){
            [self presentModalViewControllerUIViewController *)dealViewController animated:TRUE];
        }

    }

关于ios - 以编程方式打开一个新的 View Controller 给我一个黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17422131/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap