zoukankan      html  css  js  c++  java
  • iOS 项目国际化(多语言支持)

    按下图步骤创建好后使用如下代码即可实现国际化:self.infoLB.text = NSLocalizedString("key", comment: "")

     

     

     

    项目配置文件国际化,key对应着配置文件里面的key的name

     

     项目内容国际化,key对应着你要国际化的文本信息

    如果创建自定义的xxx.string,这调用的时候使用如下代码: 

    infoLB.text = NSLocalizedString("key", tableName: "xxx", bundle: Bundle.main, value: "中文", comment: "")

  • 相关阅读:
    D. Babaei and Birthday Cake--- Codeforces Round #343 (Div. 2)
    Vijos P1389婚礼上的小杉
    AIM Tech Round (Div. 2) C. Graph and String
    HDU 5627Clarke and MST
    bzoj 3332 旧试题
    codeforces 842C Ilya And The Tree
    codesforces 671D Roads in Yusland
    Travelling
    codeforces 606C Sorting Railway Cars
    codeforces 651C Watchmen
  • 原文地址:https://www.cnblogs.com/mapanguan/p/6668220.html
Copyright © 2011-2022 走看看