<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I've noticed that e.g. String is not bridged to NSString. &nbsp;The expected workaround seems to be calling .bridge() everywhere.<div class=""><br class=""></div><div class="">1. &nbsp;Is there a plan for bridging e.g. String with NSString?</div><div class="">2. &nbsp;Would it be appropriate to PR in the meantime e.g.</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class="">extension&nbsp;String&nbsp;{</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;public&nbsp;func&nbsp;cStringUsingEncoding(encoding:&nbsp;UInt) -&gt;&nbsp;UnsafePointer&lt;Int8&gt; {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;return&nbsp;self.bridge().cStringUsingEncoding(encoding)</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;}</div><div class="">&nbsp; &nbsp;&nbsp;}</div></blockquote><br class=""><div class="">&nbsp; 3. &nbsp;The README also says</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><blockquote type="cite" class="">We will also drop the 'NS' prefix from all Foundation classes</blockquote></div></blockquote><div class=""><br class=""></div><div class="">...is <b class="">that</b>&nbsp;the resolution? &nbsp;e.g what is currently <b class="">class NSString</b>&nbsp;will become instead <b class="">extension String</b>? &nbsp;Is there a bug open for that?</div></body></html>