<div style="white-space:pre-wrap">I think enum strings should gain better interoperability with swift. Something like this:

    enum City: String {
       case NewYork = &quot;New York&quot;
    } 

This can be ported over to Objective-c like this:

    typedef NSString * City;
    static City const City_NewYork = @&quot;New York&quot;;<br></div>