Getting current device language in iOS?

前端 未结 30 2981
星月不相逢
星月不相逢 2020-11-22 09:10

I\'d like to show the current language that the device UI is using. What code would I use?

I want this as an NSString in fully spelled out format. (Not

30条回答
  •  面向向阳花
    2020-11-22 09:43

    For Swift 3.0 below code can be used to answer your question:

     let language = Bundle.main.preferredLocalizations.first! as NSString
    

提交回复
热议问题