I want my app to display measurements in US or Metric based on the chosen setting in OS X's International preference pane.
How do I get this piece of information from the OS in my code?
I want my app to display measurements in US or Metric based on the chosen setting in OS X's International preference pane.
How do I get this piece of information from the OS in my code?
Use
bool usesMetic = [[NSLocale currentLocale] objectForKey:NSLocaleUsesMetricSystem];