0

在故事板中,我们只需将按钮拖动到它的目的地并创建一个序列。

如果我在情节提要中为所有这些 viewController 提供了外部 XIB 怎么办?我无法再次拖动按钮。该按钮位于外部 XIB 中,不再位于情节提要中。

所以我该怎么做?

4

1 回答 1

2

您应该为此按钮创建一个 IBOutlet。例如,它的名称为“buttonPressed”。然后实现这个方法。

- (IBOutlet)buttonPressed
{
    YourViewController *yourViewController = [[YourViewController alloc] initWithNibName:@"YourViewController" bundle:nil];
   [self.navigationController pushViewController:yourViewController animated:YES]; 

}
于 2012-09-10T10:28:52.837 回答