I have this in my myApp_AppDelegate.m:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
MainViewController *mainVC = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
[mainVC someMethod];
return YES; }
And then in my MainViewController.m the method:
-(void) someMethod{
searchBar.text = @"TEST";
NSLog(@"TEST");
}
When I call the app that is in the background using a url scheme the application handleOpenURL method is executed and the "someMethod" is executed too, I can see in the console log "TEST" but the text value in my searchbar doesn't change, the searchbar is working well because in my app I can set the text value from other methods, but only when the method is called from the appDelgate the interface seems "disconnected""
Any ideas? I can imagine that I;m missing something very simple.
Thx!