Ok I think some part of the answerer here is correct but we need to add something more here..
So I will go step by step
1 Definitely u need to make currentID as the property in MainView as stated by other answerers
2 As for Sudhanshu's answer , If u alloc and init mainview , a new viewcontroller will be initialised and hence its currentID will any value any value, so that is not correct.
3 Now for the solution part:-
There are two solutions for this :-
(1) mainview* vc = (mainview*)self.parentViewController;
then access currentID as vc.currentId
Dont forget to import "mainview.h" in ur subview
(2) use appdelegate variables i.e. declare currentID in ur appdelegate
and make it as a property
then set currentID in mainview as :-
urAppDelegate delegate =
(urAppDelegate)[[UIApplication
sharedApplication]delegate];
delegate.currentID=@"5";
and access in subview as
urAppDelegate delegate =
(urAppDelegate)[[UIApplication
sharedApplication]delegate];
NSLog(@"%@",delegate.currentID);
Dont forget to import "urAppDelegate.h" in both viewcontrollers