Please help me..
I want to pass data between different controllers in storyboard. For Example.
First View Controller
NSString *firstValue;
firstValue = @"First Number";
Now I want to send this to the result view controller and store in
NSString *resultFromFirstVC;
and show in label.
[label setText: resultFromFirstVC];
so the label show:
First Number