I have kind of weird requirement but I think there should be a way to get it done. I have something like this:
{
65645556616154 = 1615460475;
}
I want "65645556616154" and "1615460475" in separate variables or in same array with different keys or indexes using Objective C.
expected output:
a = "65645556616154";
b = "1615460475";
Is this possible without knowing key or value ?