1

我想要类似于标签栏中最后一个标签的功能(按下“...”后显示在表格中的那些)

每个都指向另一种观点。

我的桌子

一页>

b页>

页面c>

我猜代码应该在 didSelectRowAtIndexPath 但是

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

谢谢阿萨夫

4

1 回答 1

2

从随机项目复制和粘贴:

-(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];
}

[self navigateToFaq]从你的电话didSelectRowAtIndexPath

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

于 2010-07-16T16:23:47.257 回答