Easiest way:
// Prefs.h#define PREFS_MY_CONSTANT @"prefs_my_constant"
Better way:
// Prefs.hexternNSString*const PREFS_MY_CONSTANT;// Prefs.mNSString*const PREFS_MY_CONSTANT =@"prefs_my_constant";
本文共 248 字,大约阅读时间需要 1 分钟。
Easiest way:
// Prefs.h#define PREFS_MY_CONSTANT @"prefs_my_constant"
Better way:
// Prefs.hexternNSString*const PREFS_MY_CONSTANT;// Prefs.mNSString*const PREFS_MY_CONSTANT =@"prefs_my_constant";
转载于:https://www.cnblogs.com/cocoajin/p/3504026.html