我发现这段代码显示了一个模式视图:
- (void)add:(id)sender {
// Create the root view controller for the navigation controller
// The new view controller configures a Cancel and Done button for the
// navigation bar.
RecipeAddViewController *addController = [[RecipeAddViewController alloc]
initWithNibName:@"RecipeAddView" bundle:nil];
addController.delegate = self;
// Create the navigation controller and present it modally.
UINavigationController *navigationController = [[UINavigationController alloc]
initWithRootViewController:addController];
[self presentModalViewController:navigationController animated:YES];
// The navigation controller is now owned by the current view controller
// and the root view controller is owned by the navigation controller,
// so both objects should be released to prevent over-retention.
[navigationController release];
[addController release];
}
我的问题是如何实现这段代码(我将把它放在 buttonPress 方法中)
我需要在我的头文件中定义任何东西吗?让我感到困惑的是苹果提供了这个并且没有头文件所以我不知道是否应该有任何东西?
该代码指的是 RecipieAddViewController 我用什么来代替它,“UIViewController”?
我在头文件中作为代表放了什么?我需要在其他任何地方进行设置吗?喜欢房产吗?
一旦我在我的 buttonPress 方法中复制了这段代码以使其工作,我还需要做些什么吗?
感谢和抱歉所有的问题。