I want to know how to change value of one NSString
object in another iOS application in background ? I have already searched on google but I got answer in which he/she suggested Custom URL Scheme. But I want to change NSString object value of one iOS application into another iOS application in background (which is open by first app using using NSURL).
My problem scenario is that there are two application 'A' and 'B', 'A' contains a NSString
object called 'string'. Application 'B' opened by application 'A' using Custom URL Scheme, and I performed some operations in application 'B' in which a Web service is called. When web service is called then before coming response of web service if I press home button then application 'B' goes into background but I used some code which handle response in background too. I just want to change the value of 'string' object of application 'A' when response comes in application 'B' in background.