<div dir="ltr">Thanks for the response Will, that makes a lot of sense.<div>I will be sure to try something along the lines of your code snippet, this weekend.</div><div><br></div><div>I could use a map function for creating the [String], but I&#39;m not sure that is more efficient.</div><div><br></div><div>Thanks again,</div><div>Taylor Franklin</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 26, 2016 at 7:28 PM, Will Stanton <span dir="ltr">&lt;<a href="mailto:willstanton1@yahoo.com" target="_blank">willstanton1@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello Taylor,<br>
<br>
If I understand what you’re asking, I feel like NS(Date/Number)Formatter property getters should be like:<br>
CFDateFormatterCopyProperty(_cfObject, __CF_PROPERTY__)<br>
<br>
Perhaps Philippe or Tony can confirm? Would like to know what they think.<br>
(And while I’m at it: Any plans for CFAttributedString and write/read streams to become available?)<br>
<br>
<br>
So, ex. for month symbols:<br>
internal var _monthSymbols: [String]!<br>
public var monthSymbols: [String]! {<br>
    get {<br>
            var symbols = Array&lt;String&gt;()<br>
            let cfSymbols = CFDateFormatterCopyProperty(_cfObject, kCFDateFormatterMonthSymbols) as! NSArray<br>
            for obj in cfSymbols {<br>
                symbols.append((obj as! NSString)._swiftObject)<br>
            }<br>
            return symbols<br>
    }<br>
    set {<br>
        _reset()<br>
        _monthSymbols = newValue<br>
    }<br>
}<br>
<br>
<br>
Perhaps there is a more efficient way to make a CFArray into an Array&lt;String&gt;…<br>
<br>
Regards,<br>
Will Stanton<br>
<div class="HOEnZb"><div class="h5"><br>
&gt; On Feb 26, 2016, at 7:25 PM, Taylor Franklin via swift-corelibs-dev &lt;<a href="mailto:swift-corelibs-dev@swift.org">swift-corelibs-dev@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Although, all that is unrelated to my latest question of getting some of the NSDateFormatter properties their proper default values?<br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><b><font face="arial, helvetica, sans-serif" size="2">Taylor Franklin</font></b><div>iOS Developer | IBM Mobile Innovation Lab</div><div>972-207-2051  | <a href="mailto:taylorleefranklin@gmail.com" target="_blank">taylorleefranklin@gmail.com</a></div><div><i>Blog</i>: <a href="http://taylorfranklin.me/" style="color:rgb(17,85,204);font-size:small" target="_blank">http://taylorfranklin.me</a> | <i>LinkedIn</i>: <a href="https://www.linkedin.com/in/taylorfranklin" target="_blank">https://www.linkedin.com/in/taylorfranklin</a></div></div></div></div></div>
</div>