iOS 预编译指令

是否是模拟器

#if targetEnvironment(simulator)
    print("模拟器")
#else
    print("真机")
#endif

是否是DEBUG模式

#if DEBUG
    print("DEBUG")
#else
    print("其他")
#endif

混饭小能手
36 声望2 粉丝

前端开发者


« 上一篇
iOS文件操作
下一篇 »
day.js备忘录