<div dir="ltr">Is it true that some CF APIs, such as these, are still imported as CFString instead of String?<div><br></div><div><a href="https://github.com/apple/swift-3-api-guidelines-review/blob/swift-3/Platforms/OSX/CoreText/CTFontTraits.swift#L2-L9">https://github.com/apple/swift-3-api-guidelines-review/blob/swift-3/Platforms/OSX/CoreText/CTFontTraits.swift#L2-L9</a></div><div class="gmail_extra">
<br><div class="gmail_quote">On Mon, Apr 18, 2016 at 8:21 PM, Joe Pamer via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi everyone,<div><br></div><div>Prior to Swift 1.2, conversions between bridged Swift value types and their associated Objective-C types could be implicitly inferred in both directions. For example, you could pass an NSString object to a function expecting a String value, and vice versa.</div><div><br></div><div>In time we found this model to be less than perfect for a variety of reasons:</div><div><ul><li>Allowing implicit conversions between types that lack a subtype relationship felt wrong in the context of our type system.</li><li>Importing Foundation would lead to subtle changes in how seemingly simple bodies of code were type checked.</li><li>The specific rules implemented by the compiler to support implicit bridging conversions were complex and ad-hoc.</li><li>Looking at the Swift code that had been written up until 1.2, these kinds of implicit conversions did not appear terribly common. (And where they <i>were</i> present, it wasn’t clear if users actually knew they were taking place.)</li></ul><div><br></div></div><div>In short, these conversions generally lead to a more confusing and unpredictable user model. So, for Swift 1.2, we sought to eliminate implicit bridging conversions entirely, and instead direct users to use explicit bridging casts in their place. (E.g., “<font face="Menlo">nsStrObj as String</font>”.)</div><div><br></div><div>Unfortunately, when it came time to roll out these changes, we noticed that some native Objective-C APIs were now more difficult to work with in Swift 1.2. Specifically, because global Objective-C <font face="Menlo">NSString*</font> constants are imported into Swift as having type <font face="Menlo">String</font>, APIs that relied on string-constant lookups into dictionaries imported as <font face="Menlo">[NSObject : AnyObject]</font> failed to compile. E.g.</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="Menlo">var s : NSAttributedString</font></div><div><font face="Menlo">let SomeNSFontAttributeName : String // As per the importer.</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">let attrs = s.attributesAtIndex(0, effectiveRange:nil) // In Swift 2, ‘attrs’ has type [NSObject : AnyObject]</font></div><div><font face="Menlo">let fontName = attrs[SomeNSFontAttributeName] // This will fail to compile without an implicit conversion from String to NSString.</font></div><div><br></div></blockquote>For this reason, we decided to make a compromise. We would require explicit bridging casts when converting from a bridged Objective-C type to its associated Swift value type (E.g., <font face="Menlo">NSString</font> -&gt; <font face="Menlo">String</font>), but not the other way around. This would improve the status quo somewhat, and would also avoid breaking user code in a needless/painful fashion until we could get better API annotations in place.<div><br></div><div>With the introduction of Objective-C generics last year, along with all of the awesome improvements to API importing happening for Swift 3, I think it’s time that we take another look at completing this work. Taking a look back at last year’s “problematic” APIs, all of them now surface richer type information when imported into Swift 3. As a result, the remaining implicit bridging conversions now feel far less necessary, since Objective-C APIs are now more commonly exposed in terms of their appropriate bridged Swift value types. (For instance, in Swift 3, the above reference to <font face="Menlo">attrs</font> will import as <font face="Menlo">[String : AnyObject].</font>)</div><div><br></div><div>I propose that we fully eliminate implicit bridging conversions in Swift 3. This would mean that some users might have to introduce introduce a few more ‘as’ casts in their code, but we would remove another special case from Swift&#39;s type system  and be able to further simplify the compiler. If anyone is curious and would like to take this model for a spin, I’ve pushed an experimental branch that implements this proposed change, <font face="Menlo">inhibit-implicit-conversions</font>.</div><div><br></div><div>Thoughts?</div><div><br></div><div>Thanks!</div><span class="HOEnZb"><font color="#888888"><div>- Joe</div></font></span></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>