<div style="white-space:pre-wrap">I think enum strings should gain better interoperability with swift. Something like this:
enum City: String {
case NewYork = "New York"
}
This can be ported over to Objective-c like this:
typedef NSString * City;
static City const City_NewYork = @"New York";<br></div>