Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
2  
UIStoryboard mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle: nil]; ViewController *controller = (ViewController)[mainStoryboard instantiateInitialViewController]; //self.viewController = [[ViewController alloc]init]; self.viewController = controller; I'm guessing I can use something like this to find the answer – SeungUn Ham Jan 4 '12 at 1:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.