美文网首页
iOS开发swift -- 判断程序是否运行在模拟器上

iOS开发swift -- 判断程序是否运行在模拟器上

作者: Hayley__ | 来源:发表于2017-12-23 13:00 被阅读83次

    第一次遇到这种判断、Mark一下

    struct Platform {
        static let isSimulator: Bool = {
            var isSim = false
            #if arch(i386) || arch(x86_64)
                isSim = true
            #endif
            return isSim
        }()
    }
     
    // Elsewhere...
     
    if Platform.isSimulator {
        // Do one thing
    }
    else {
        // Do the other
    }
    

    相关文章

      网友评论

          本文标题:iOS开发swift -- 判断程序是否运行在模拟器上

          本文链接:https://www.haomeiwen.com/subject/pcxqgxtx.html