1

我正在构建一个应用程序,它需要顶部导航中的三个按钮。酒吧。我不想做一个标签栏,因为标签中只有一个项目。

在下面的代码中,左侧按钮(编辑)工作正常。右键 - 卡片的链接也可以正常工作。然而愚蠢的添加按钮给了我一个错误,它找不到选择器(insertNewObject)。

如果我拿出我的自定义代码并使用“在紧要关头工作”的代码,那么......它可以工作。

我会很高兴知道我做错了什么,或者,另一种处理手头问题的方式 - 链接到应用程序的另一部分。

TIA。

  /*
    //  THIS WORKS IN A PINCH
    // Set up the edit and add buttons.
    self.navigationItem.leftBarButtonItem = self.editButtonItem;

    UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
    self.navigationItem.rightBarButtonItem = addButton;
    [addButton release];

   //  END OF WHAT WORKS
*/
    // create a toolbar to have two buttons in the right
    UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 105, 44.01)];

    self.navigationItem.leftBarButtonItem = self.editButtonItem;

    // create the array to hold the buttons, which then gets added to the toolbar
    NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:3];

    UIBarButtonItem* addButton = [[UIBarButtonItem alloc]
                           initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
    addButton.style = UIBarButtonItemStyleBordered;
    [buttons addObject:addButton];
    [addButton release];

    // create a standard "add" button


    // create a flip button
    UIBarButtonItem* flipButton = [[UIBarButtonItem alloc]
          initWithTitle:@"Cards" style:UIBarButtonItemStyleBordered
          target:self action:@selector(flipToFront)]; 
    [buttons addObject:flipButton];
    [flipButton release];


    // stick the buttons in the toolbar
    [tools setItems:buttons animated:NO];

    [buttons release];

    // and put the toolbar in the nav bar

    UIBarButtonItem* rightButtonBar = [[UIBarButtonItem alloc] initWithCustomView:tools];
    self.navigationItem.rightBarButtonItem = rightButtonBar;
    [rightButtonBar release];
4

1 回答 1

2

您可能在选择器名称后缺少一个冒号。我认为只是放入 @selector(newObject) 是对没有参数的方法的引用。@selector(newObject:) 可能会起作用。

于 2012-03-24T14:04:58.517 回答