使用 didSelectRowAtIndexPath 推送下一个视图

发布于 2024-11-05 09:53:34 字数 393 浏览 0 评论 0原文

我添加了这个方法 didSelectRowAtIndexPath 来转到下一个视图 没有错误,但我无法进入下一个视图。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    detailhadith *detaihd = [[detailhadith alloc] initWithNibName:@"detailhadith" bundle:nil];
    [self.navigationController pushViewController:detaihd animated:YES];
    [detaihd release];
}

I added this method didSelectRowAtIndexPath to go to the next view
no errors but i can't go to the next view.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    detailhadith *detaihd = [[detailhadith alloc] initWithNibName:@"detailhadith" bundle:nil];
    [self.navigationController pushViewController:detaihd animated:YES];
    [detaihd release];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾`听者〃 2024-11-12 09:53:34

如果你没有navigationController,你可以像这样添加一个子视图:[self.view addSubview:nextView.view];

you can just add a subview like this: [self.view addSubview:nextView.view]; if you don't have a navigationController.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文