I am making an application in which I am populating Array by getting Plist Dictionary, and showing in table view. Everything is working fine but data is not as ordered as we write in plist.
Exception:
1-A
2-B
3-C
But on run time execution the actual result is something like this.
1-C
2-A
3-B
Am using Swift and can't find any great help on Internet because I really don't know what to write actually to find help.
So please try to provide any useful information to avoid this problem. I can provide code on demand.
Edit: