I have two view controllers VC1 and VC2. I pass a value from VC1 to VC2 through prepareForSegue
method. and when I receive that value in VC2 I multiply it by 10.
what I want to do is, after multiplying that value by 10 in VC2 I want to return it back to VC1.
such scenario could be done using Intents
and BroadcastReceiver
. how can I do that in iOS using objective.c?