Xcode - bulk class renaming

I want to rename about 100 classes in my Xcode project. It would be painful to change each file name, and then search and replace the name of each class in question.

Is there a better way?

The change in the question is related to the change in the prefix - think about what Apple will do if they decide to rename all the classes in their "NS" structure to start with "MS". Unfortunately, these two caps specify a few words in the project that are not class names.

+3
source share
2 answers

If you don't have C ++, Shaggy's answer will probably work for you. But in my case, the answer seems like there is no better way.

0
source

Xcode , "Refactor...", ( .)

+3

Source: https://habr.com/ru/post/1794796/


All Articles