If it's static, you can't (that's what the static keyword is for).
If you simply declare it as a global variable, however, you can do something like this:
// ClassA.m
NSString *const str = @"Foo";
// ClassB.m
extern NSString *const str;
NSLog(@"str is: %@", str);