函数:getOSType 获取设备系统
函数名称:获取设备系统
函数功能:获取设备系统类型是 iOS 还是 Android
引擎版本:iOS v2.1.6,Android v1.0 以上
函数方法
os_type = getOSType()
返回值 | 类型 | 说明 |
---|---|---|
os_type | string | 返回设备的系统类型 ios、android |
函数用例
判断系统是否符合要求
os_type = getOSType(); --获取设备系统版本
if os_type == "android" then --返回值为纯小写字母
dialog("欢迎使用触动精灵 Android 版",5)
else
dialog("欢迎使用触动精灵 iOS 版",5)
end
注意事项
- 返回值为纯小写字母