In Java, I may have a class, for example, Utility
and I have a static method called changeToCapitalLetter
, so I can do something like this:
Utility.changeToCapitalLetter(myString);
How can I do the similar thing in Objective C?
Thanks a lot