故事板中的UIBarButtonItem

时间:2012-05-27 09:27:15

标签: xcode view storyboard

使用Storyboard时包含的主详细信息应用程序此视图中的代码已加载。

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

我想在.xib'S

的同一项目中使用它
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showGegenstellenView)];

问题是我无法在storyboard项目中实现此代码。我找不到专门用于故事板的帮助......

-(void)showGegenstellenView{
GegenstellenViewController *gegenstellenViewController = [[GegenstellenViewController alloc]initWithMasterController:self Gegenstellen:nil];
[self presentModalViewController:gegenstellenViewController animated:YES];

}

最后,我想在表格视图中单击添加按钮,并且视图附带一个公式。 所有这些都在xib的项目中有效。但我想用故事板!如果您希望通过团队查看器查看xib项目或通过邮件查看sib,我没有问题。

最诚挚的问候 约翰

0 个答案:

没有答案