According to some sources, Apple intentionally deleted this. They no longer encourage the use of prefixes for application code, arguing that the application code will not be reused and therefore will have little chance of name conflicts. See: http://scottberrevoets.com/2014/07/25/objective-c-prefixes-a-thing-of-the-past/
They only encourage it if you are designing a structure. For frameworks, you can add it using the project inspector: Why Xcode is not a file name prefix
I use the above method to add prefixes to my application because I find it tidier. In addition, if some structure that I ultimately use does not comply with the prefix convention, I can be sure that there will be no conflict with my code.
Alexander Liberson
source share