从另一个视图控制器删除视图控制器

时间:2012-12-24 12:18:37

标签: objective-c ios uiviewcontroller

我对iPhone应用程序开发很陌生 我正在使用Objective-C ++和std CPP为iPhone模拟器开发一个示例应用程序。

我的应用程序中有两个视图,在CPP代码的某些事件中,我使用第一个视图控制器中的以下代码显示第二个视图。

// Defined in .h file 
secondViewScreenController *mSecondViewScreen;

// .mm file Code gets called based on event from CPP (common interface function between Objective-C++ and CPP code)
mSecondViewScreen = [[secondViewScreenController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:mSecondViewScreen animated:YES];

我能够在屏幕上看到第二个视图,但问题是我无法从第一个视图控制器结束/删除第二个视图控制器。

如何使用第二个视图控制器的指针或使用任何其他方法从第一个视图控制器中删除第二个视图控制器。

要删除第二个视图,我在第二个视图控制器文件中有以下代码,该文件在第二个视图的按钮点击事件中被调用。

// In .mm of second view controller. 
- (IBAction)onEndBtnClicked:(UIButton *)sender
{
   [self dismissModalViewControllerAnimated:NO];
   [self.navigationController popViewControllerAnimated:YES];
}

上面的代码工作正常,当我点击秒视图的结束按钮时,它从屏幕上删除第二个视图控制器并导航到第一个视图,我如何使用相同的代码从第一个视图控制器中删除第二个视图。

我绑定使用NSNotificationCenter将事件从第一个视图发送到第二个视图以调用函数onEndBtnClicked但它无效。

这样做的正确方法是什么?

OSX版本:10.5.8和Xcode版本:3.1.3

2 个答案:

答案 0 :(得分:4)

在secondViewController中创建一个协议,如:

@protocol SecondViewScreenControllerDelegate <NSObject>

- (void)secondViewScreenControllerDidPressCancelButton:(UIViewController *)viewController sender:(id)sender;

// Any other button possibilities

@end

现在你必须在secondViewController类中添加一个属性:

@property (weak, nonatomic) id<SecondViewScreenControllerDelegate> delegate;

你在第二个ViewController实现中将它sinthesize:

@synthesize delegate = _delegate;

最后,你要做的就是在firstViewController中实现协议,并在呈现之前正确设置secondViewController:

@interface firstViewController : UIViewController <SecondViewScreenControllerDelegate>

...

@implementation firstViewController

    - (void)secondViewScreenControllerDidPressCancelButton:(UIViewController *)viewController sender:(id)sender
    {
         // Do something with the sender if needed
         [viewController dismissViewControllerAnimated:YES completion:NULL];
    }

然后从第一个呈现第二个ViewController:

UIViewController *sec = [[SecondViewController alloc] init]; // If you don't need any nib don't call the method, use init instead
sec.delegate = self;
[self presentViewController:sec animated:YES completion:NULL];

准备好了。无论何时你想从第一个中解除secondViewController,只需调用:(在secondViewController实现中)

[self.delegate secondViewScreenControllerDidPressCancelButton:self sender:nil]; // Use nil or any other object to send as a sender

所有发生的事情是你发送第二个ViewController的指针,你可以从第一个使用它。然后你可以毫无问题地使用它。不需要C ++。在Cocoa中你不需要C ++。几乎所有事情都可以用Objective-C完成,而且它更具动态性。

答案 1 :(得分:0)

如果您的应用程序中只有两个视图,请使用

- (IBAction)onEndBtnClicked:(UIButton *)sender
{
   [self dismissModalViewControllerAnimated:NO];
}

删除以下行:

 [self.navigationController popViewControllerAnimated:YES];

因为你正在解雇第二个视图然后你想要从第一个视图中删除它。