你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS Swift判斷代碼運行在模擬器上

iOS Swift判斷代碼運行在模擬器上

編輯:IOS開發綜合

iOS模擬器有些功能沒有,比如拍照,因此代碼中需要加個模擬器判斷,查了好多文章,終於找到了。swift代碼如下:

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
}
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved