Skip to content

Instantly share code, notes, and snippets.

@neiraza
Created February 21, 2014 07:12
Show Gist options
  • Save neiraza/9130073 to your computer and use it in GitHub Desktop.
Save neiraza/9130073 to your computer and use it in GitHub Desktop.
Storyboardのsegueでパラメタ受け渡したった ref: http://qiita.com/neiraza/items/6eba4e57dffa993b4933
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"openChatView"]) {
SecondViewController *controller = segue.destinationViewController;
controller.name = @"neiraza";
}
}
@interface SecondViewController : UIViewController
@property (nonatomic, strong) NSString *name;
@end
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"name %@", self.name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment