选定的 UITableView 单元格未加载另一个视图

发布于 2024-10-08 23:37:38 字数 808 浏览 0 评论 0原文

大家好,我在这里遇到一个奇怪的问题。我试图让我的表推送另一个视图,称为“productviewcontroller”。

我在标题上导入“productviewcontroller”和“myappviewcontroller”。

#import "SearchViewController.h"
#import "MyAppViewController.h"
#import "TBXML.h"
#import "ProductViewController.h"

我正在设置我的桌子以推动另一个视图。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    ProductViewController *productViewController = [[ProductViewController alloc] initWithNibName:@"ProductViewController" bundle:[NSBundle mainBundle]];

    [self.navigationController pushViewController:productViewController animated:YES];
    [productViewController release];

    NSLog(@"Test.");
}

当我选择单元格时,它会给我消息“测试”。但不要推动另一种观点。 我在应用程序委托上设置导航控制器。

我做错了什么?

谢谢!

Hey everbody, im getting a curious problem here. Im trying to make my table push another view, called 'productviewcontroller'.

Im importing both 'productviewcontroller' and 'myappviewcontroller' on header.

#import "SearchViewController.h"
#import "MyAppViewController.h"
#import "TBXML.h"
#import "ProductViewController.h"

And im setting my table to push the another view.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    ProductViewController *productViewController = [[ProductViewController alloc] initWithNibName:@"ProductViewController" bundle:[NSBundle mainBundle]];

    [self.navigationController pushViewController:productViewController animated:YES];
    [productViewController release];

    NSLog(@"Test.");
}

When i selects the cell, it gives me the message 'test'. But dont push the another view.
Im setting the navigationController on app delegate.

What im doing wrong?

Thanks!

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

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

发布评论

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

评论(2

吻安 2024-10-15 23:37:38

看起来不错。 ProductView 笔尖是否包含导航控制器?

It looks right. Does the ProductView nib include a navigation controller?

少女情怀诗 2024-10-15 23:37:38

在此视图中使用导航控制器,您要从中推送“ProductControllerView”并将其与 IBOutlet 绑定,然后您就可以推送视图。

Use your navigation controller in this view from which you want to push "ProductControllerView" and bind it with IBOutlet and you are able to push the view..

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