Suppose we have created two UIViewController type class, one is "AController" another is "BController".
Now on the tapping on a butoon on "AController" it pushed to the "BController", and on the tapping on a back button of "BController" it poped to the "AController".
I just want to get some value from "BController" to "AController" when it popped to the "AController", and I have used custom delgate.
So my question is that what will happened if we set property 'strong' of the delegate? Please explain.