tags:

views:

89

answers:

2

Can you suggest me the API to get the system language and system locale of mac 10.3.9 version using cocoa?

+1  A: 

Try NSLocale- Not sure if it works in 10.3.9

christo16
"Available in Mac OS X v10.4 and later."
christo16
A: 

Yes it is available from 10.4, so tat would not help me,

I used

CFLocaleRef cflocale = CFLocaleCreateCopy(NULL, CFLocaleCopyCurrent());

Pradeep Kumar