I want to print out string1 in vc1 from vc2.
I use to modify string1 in vc1 by declaring this code in vc2 (this is ARC btw not that it matters)
appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
vc1 = appDelegate.viewController;
NSLog(@"vc1.string1 %@", vc1.string1);
cause there's vc1 already declared in AppDelegate like this:
@synthesize viewController = _viewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
When I make a project using storyboard vc1 isn't declared there so there no code in
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
return YES;
}
I even added self.viewController = [[ViewController alloc]init]; inside but it still would not work.
Hence, I could not approach the string1 in vc1 from vc2 with a storyboard project.
Here's the link of my projects: NoStoryboardProject - http://dl.dropbox.com/u/12439052/NoStoryboardProject.zip StoryboardProject - http://dl.dropbox.com/u/12439052/StoryboardProject.zip