<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>I'm not part of the core team, of course, but I like this change in principle.</div><div id="AppleMailSignature"><br></div><div id="AppleMailSignature">My one concern in this case would be choosing a naming convention for the back port that makes sense both ways. The naming convention you propose ( EnumName_EnumCase) seems inconsistent with the current import of strings from Obj-C to Swift. Could we find a way to unify them?</div><div><br>On 31 Dec 2016, at 4:15 am, Derrick Ho via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div>I'm trying to revive an old thread.  I'd like to hear from the community.<br><br>Can we make a swift enum string interoperable with Objective-C?<br><br>Currently NS_STRING_ENUM ports from objective-c to swift but not the other way around.<br><br>I feel that if you can go one direction you should be able to go back.<br><br>@objc<br>enum City: String {<br>       case NewYork = "New York"<br>} <br><br>Make this available as a global string in objective -c ?<br><div class="gmail_quote"><div dir="ltr">On Wed, Nov 23, 2016 at 5:55 AM Derrick Ho &lt;<a href="mailto:wh1pch81n@gmail.com">wh1pch81n@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="white-space:pre-wrap" class="gmail_msg">I think enum strings should gain better interoperability with swift. Something like this:

    enum City: String {
&nbsp;&nbsp;&nbsp;    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 class="gmail_msg"></div>
</blockquote></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>