Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calling UIViewController method from app delegate [duplicate]

I know there are duplicates of this question but my situation is different here.

When user goes back to the home (void)applicationDidEnterBackground gets invoked from the AppDelegate class. However once user presses home button, I don't want user to see this view controller again, so I have a method named (void)goToBeginning that switches to another view controller. I want to be able to call this method from AppDelegate. I don't really want to use NotificationCenter for this. Also the picked solution here: Calling view controller method from app delegate does not work for me as it initialises new object whereas I want to be able to call an object that is already in the view. How can I do that? I am using iOS 7 and XCode 5.

like image 853
Sarp Kaya Avatar asked Sep 23 '13 01:09

Sarp Kaya


1 Answers

  1. Notification. But you don't want this.
  2. You can get the reference to your that viewController in the AppDelegate. Than call that (void)goToBeginning method in the (void)applicationDidEnterBackground

For example: In your ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    appDelegate.myViewController = self;
}

And in your AppDelegate:

@class MyViewController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (weak, nonatomic) MyViewController *myViewController;

@end

And in the AppDelegate's implementation:

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    [self.myViewController goToBeginning];
}
like image 70
sunkehappy Avatar answered Nov 06 '22 05:11

sunkehappy