I am a newbie in Objective C, Xcode and so on. Thanks to your help, reading this forum, i did some steps in the right direction, but only in a "Single View Application".
Now I have in my storyboard two views:
(FirstViewController.h / m) (SecondViewController.h /m)
I also created an Objective C class whom is meant to receive data from those two views.
At first time, in the FirstViewController i had an IBA ACTION.
When a button was pressed:
controllo *control;
control = [[controllo alloc] init];
and then i use to set "control" instances using properties .. and It worked.
Now The same instance of "controllo" (control) should receive data even from my SecondViewClass, but I cannot access to it, even if the button of the first view (IBA ACTION) is pressed BEFORE passing to the second view.
Could you please show me how have a class accessible from all the views I need in my project?
Thanks!