• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Why does default NSDateFormatter in IB ignore thousands separator?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Why does default NSDateFormatter in IB ignore thousands separator?


  • Subject: Re: Why does default NSDateFormatter in IB ignore thousands separator?
  • From: Sean McBride <email@hidden>
  • Date: Fri, 04 Nov 2016 15:05:41 -0400
  • Organization: Rogue Research Inc.

On Wed, 2 Nov 2016 11:10:00 -0700, Quincey Morris said:

>> Why on Earth does a default NSNumberFormatter ignore the user's
>choice?  Am I alone thinking this is buggy?
>
>Going from memory, I think I ran into this too, once. IIRC, the problem
>is that one of the necessary parameters (e.g. the separator character,
>the number of digits per group) doesn’t default to the system settings,
>so that the formatter *would* show the grouping but it thinks it can’t.

Thanks for confirming my sanity. :)  I guess it's off to Radar again...

<rdar://29115913> Default NSNumberFormatter created in IB fails to honour thousands (aka group) separator
<rdar://29115955> "Attributes inspector" for NSNumberFormatter should default to larger number for "sample input"

Quite a shame, as most developers probably just figure the default number formatter is the right thing to use, I'd wager that most apps out there are in fact not rendering numbers in proper localized format. :(

>FWIW, here’s the code I use to get a formatter to show separators (not
>via IB, obviously), but this combination of non-default parameters
>works, at least:
>
>> 		formatter = [[NSNumberFormatter alloc] init];
>> 		formatter.formatterBehavior = NSNumberFormatterBehavior10_4;
>> 		formatter.usesGroupingSeparator = YES;
>> 		formatter.locale = [NSLocale currentLocale];
>> 		formatter.groupingSize = 3;
>
>(The fact that I did this in code may also reflect the fact that I gave
>up trying to do it in IB.)

My app shows a lot of numbers, doing this in code would require creating so many new outlets.  :(  ex: Searching my xibs for "usesGroupingSeparator="NO"" gives 129 results.

>The fact that the IB file seems to say there’s no grouping may not be
>significant. IB may have figured out that one required setting is
>missing, so disabling the grouping completely might be an effect, not a cause.

In fact, a search & destroy of "usesGroupingSeparator="NO"" and "groupingSize="0"" in the xib seems to fix the problem for me.  I'll probably go with that "solution".

Cheers,

--
____________________________________________________________
Sean McBride, B. Eng                 email@hidden
Rogue Research                        www.rogue-research.com
Mac Software Developer              Montréal, Québec, Canada

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: Why does default NSDateFormatter in IB ignore thousands separator?
      • From: Alex Zavatone <email@hidden>
    • Re: Why does default NSDateFormatter in IB ignore thousands separator?
      • From: Richard Charles <email@hidden>
References: 
 >Why does default NSDateFormatter in IB ignore thousands separator? (From: Sean McBride <email@hidden>)
 >Re: Why does default NSDateFormatter in IB ignore thousands separator? (From: Quincey Morris <email@hidden>)

  • Prev by Date: Re: How to ResolvingSymlinksInPath ?
  • Next by Date: Re: Why does default NSDateFormatter in IB ignore thousands separator?
  • Previous by thread: Re: Why does default NSDateFormatter in IB ignore thousands separator?
  • Next by thread: Re: Why does default NSDateFormatter in IB ignore thousands separator?
  • Index(es):
    • Date
    • Thread