I am trying to have a dynamic swift program that at runtime will do some actions and convert a string into a method call.
Example:
Array = ["TestMethod()", "TestMethod2()"]
I want to essentially say
if the sky is blue{
convertStringToMethodCall(Array[0])
}