当在 UITableView(在另一个笔尖/视图上)上按下单元格时,如何导航到笔尖(视图)?

发布于 2024-09-10 08:55:02 字数 261 浏览 2 评论 0原文

我想要类似于选项卡栏中最后一个选项卡的功能(按“...”后在表格中显示的选项卡),

每个选项卡都指向另一个视图。

我的表格

页a>

页面b>

页c>

我猜代码应该在 didSelectRowAtIndexPath 中 但

  1. 我不知道如何根据表格调用笔尖
  2. 我不知道导航到下一个笔尖后是否...我将能够导航回来

谢谢 阿萨夫

I want the functionality similar to the last tabs in a tab bar (those that are shown in a table after pressing the "..." )

Each points to another view.

My table

page a>

page b>

page c>

I guess that the code should be in didSelectRowAtIndexPath
but

  1. I dont know how to call a nib based on the table
  2. I dont know if after navigating to the next nib ... I'll be able to navigate back

Thanks
Asaf

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

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

发布评论

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

评论(1

情场扛把子 2024-09-17 08:55:02

从随机项目中复制并粘贴:

-(void)navigateToFAQ
{
    UIViewController *faqBrowser = [[UIViewController alloc] autorelease];
    [faqBrowser initWithNibName:@"faqBrowser" bundle:nil];

    // EDIT: sorry, leave this out this is my own category to UIBarButtonItem!
    //faqBrowser.navigationItem.leftBarButtonItem = [UIBarButtonItem arrowLeftWithText:@"back" target:self action:@selector(dismiss)];

    [self.navigationController pushViewController:faqBrowser animated:YES];
    faqBrowser.title = @"FAQ";
}

-(void)dismiss
{
    [self.navigationController popViewControllerAnimated:YES];
}

didSelectRowAtIndexPath 调用 [self navigatorToFaq]

并确保您有一个名为 faqBrowser.xib 的 nib 文件...

copy&paste from random project:

-(void)navigateToFAQ
{
    UIViewController *faqBrowser = [[UIViewController alloc] autorelease];
    [faqBrowser initWithNibName:@"faqBrowser" bundle:nil];

    // EDIT: sorry, leave this out this is my own category to UIBarButtonItem!
    //faqBrowser.navigationItem.leftBarButtonItem = [UIBarButtonItem arrowLeftWithText:@"back" target:self action:@selector(dismiss)];

    [self.navigationController pushViewController:faqBrowser animated:YES];
    faqBrowser.title = @"FAQ";
}

-(void)dismiss
{
    [self.navigationController popViewControllerAnimated:YES];
}

call [self navigateToFaq] from your didSelectRowAtIndexPath

and make sure you have a nib file called faqBrowser.xib...

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