I am confused about Cyclic dependencies. I have two .m file and I need used those two files in each other.
For example two files A.h/A.m and B.h/.m Now I have to access the variable of file A.h/.m into B.h/.m and the variable of file B.h/.m into A.h/.m I import A.h into B.h and B.h into A.h But it gives an error.
And ya I don't want to use Delegate file ! is there any way to do the same without Delegate file ?
Thanks..