A Release iOS App

1. Remove Log messages

// 1: Create a 'xxxx.pch' file 
// 2: In project build settings, enable 'pch' compile and set teh pch file path

'xxxx.pch' file:

#ifndef xxxx_PrefixHeader_pch
#define xxxx_PrefixHeader_pch

// remove logs while it is a release version
#ifndef __OPTIMIZE__
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...){}
#endif

// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.

#endif /* xxxx_PrefixHeader_pch */ 

2. Localizable

  • Set project localizations
image.png
  • Localization strings
    File -> new file -> (iOS->Resource)String File
    select the string file and see the right view
image.png
  • Localization App Name
    create a strings file and name 'InfoPlist.strings'
    and copy this to the file CFBundleName = "Test";

  • Localization storyboard

image.png
  • Notice
    • The 'Base' is the default language (also call main language in itunes)
    • To make a localization name, you must create a 'strings' file named 'InfoPlist.strings'
    • The localization is the end of development but not the localization strings
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容