码迷,mamicode.com
首页 > 移动开发 > 详细

iOS9 http 不能连接的解决办法

时间:2015-09-30 16:09:28      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

iOS9要求App内访问的网络必须使用HTTPS协议。原有的HTTP请求会报错,适配方法如下。

打开TARGETS-Build Phases, 添加New Run Script Phase,代码如下:

# Add exception for Debug builds
if [ "${CONFIGURATION}" == "Debug" ]
then
# Remove exception existing builds
/usr/libexec/PlistBuddy -c "Delete :NSAppTransportSecurity:NSAllowsArbitraryLoads" "${CONFIGURATION_BUILD_DIR}/${INFOPLIST_PATH}"
exitCode=$? #Supresses failure

/usr/libexec/PlistBuddy -c "Add :NSAppTransportSecurity:NSAllowsArbitraryLoads bool true" "${CONFIGURATION_BUILD_DIR}/${INFOPLIST_PATH}"
fi

 

其中"${CONFIGURATION}" == "Debug"的Debug替换为相应编译环境即可

iOS9 http 不能连接的解决办法

标签:

原文地址:http://www.cnblogs.com/liuliuliu/p/4849134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!