In my Xamarin iOS application, I have a series of JavaScript functions stored as strings that need to be evaluated in the background. The goal is to pass another JSON string to these functions for processing without any user interference.
I am open to using a web view for this purpose, but it should not be visible to the user. The evaluation and result retrieval should all happen seamlessly.
For instance, consider a scenario where I want a function to extract two values from the incoming JSON - `first` and `second`, and then calculate their sum. Both the function and the relevant JSON data are stored as string objects.