I added a view with app delegate class's button click. Like this:

In UnifeyeMobile_templateAppDelegate.mm :

- (IBAction)onBtnImageTracking:(id)sender {

// create our UnifeyeMobileViewController and present it
UnifeyeMobileImageTrackingViewController* unifeyeMobileViewController = [[UnifeyeMobileImageTrackingViewController alloc] initWithNibName:@"UnifeyeMobileImageTrackingViewController" bundle:nil];
unifeyeMobileViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[viewController presentModalViewController:unifeyeMobileViewController animated:YES];
[unifeyeMobileViewController release];
}

And I want to back from added UnifeyeMobileImageTrackingViewController's view to main app delegate class view. I put a button for back. But I dont know how to do this? Please help me.

link|improve this question

42% accept rate
1  
[self dismissModalViewControllerAnimated:YES] ? – Jano Dec 13 '11 at 12:19
feedback

2 Answers

up vote 0 down vote accepted

Within the model viewcontollers code, simply call

[self dismissModalViewControllerAnimated:YES];

For the interaction from the users, which you wish to use to dismiss the modal view (for example a button touch event).

link|improve this answer
Thanks, it works but I have a memory problem, I got an error in dealloc method. – Hacer sengul Akac Dec 13 '11 at 13:04
feedback

This could be done two ways depending if you want to add some special behavior to hiding your modal view:

Simple (inside the modal view)

[self dismissModalViewControllerAnimated:YES];

If you want to add some custom effects to hiding the modal view, let UnifeyeMobileImageTrackingViewController hold some kind of reference to the main view. This can be achieved by making your main view implement some delegate-protocol that could look something like this:

@protocol ModalViewDelegate <NSObject>

- (void) hideModal:(UIViewController*) modalViewController;

This way, you could set a modalViewDelegate on the UnifeyeMobileImageTrackingViewController like this before you show it:

unifeyeMobileViewController.delegate = self;

Let the implementation of hideModal in the main view hide the modal view the way you like.

Hope this helps :)

link|improve this answer
thanks for all :) – Hacer sengul Akac Dec 13 '11 at 13:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.