I want to store some coordinates on a text files that correspond to an image array i will call out on my apps. Is it possible to write it in a notepad and save it as a .txt and be able to read in xcode the coordinates written inside or do i have to use plist format for that?
thank you.
It is possible to read the text file just fine, but writing a plist is trivial and probably will make the reading easier. You can also directly write a header file with the coordinates:
Depends on what exactly you need that for.