Referencing a static NSString * const from another class

Viewed 16026

In class A I have this:

static NSString * const kMyConstant = @"my constant string";

How can I reference this from class B?

3 Answers
Related