I have a Strings.h file with many entries like:
#define HIDE_WORD NSLocalizedString(@"Hide", @"the word on a button to Hide a screen that is showing")
How can I make those macros available to Swift, or what's an alternate if I can't make the macros available? Is the best approach to wrap the macros I want available in Swift in class methods?
This answer doesn't work in my case because NSLocalizedString(@"Foo", @"Bar") isn't constant.