更新xcode8之后https连接问题

之前一直使用xcode6,这两天跟新了,遇到了很多和大家一样的问题。但是使用大家的方法去解决,却行不通。总结了一下解决https连网的解决办法。
(1)很多人都提出来的,大多数情况下可以解决,就是修改你的info.plist文件。



<plist version="1.0">
    <dict>
        <key>NSAppTransportSecuritykey>
        <dict>
            <key>NSAllowsArbitraryLoadskey>
            <true/>
        dict>
        <key>CFBundleDevelopmentRegionkey>
        <string>enstring>
        <key>CFBundleDisplayNamekey>
        <string>${PRODUCT_NAME}string>
        <key>CFBundleExecutablekey>
        <string>${EXECUTABLE_NAME}string>
        <key>CFBundleIdentifierkey>
        <string>learn.$(PRODUCT_NAME:rfc1034identifier)string>
        <key>CFBundleInfoDictionaryVersionkey>
        <string>6.0string>
        <key>CFBundleNamekey>
        <string>${PRODUCT_NAME}string>
        <key>CFBundlePackageTypekey>
        <string>APPLstring>
        <key>CFBundleShortVersionStringkey>
        <string>1.0string>
        <key>CFBundleSignaturekey>
        <string>????string>
        <key>CFBundleVersionkey>
        <string>1.0string>
        <key>UIBackgroundModeskey>
        <array>
            <string>audiostring>
        array>
        <key>LSRequiresIPhoneOSkey>
        <true/>
        <key>UIRequiredDeviceCapabilitieskey>
        <array>
            <string>armv7string>
        array>
        <key>UISupportedInterfaceOrientationskey>
        <array>
            <string>UIInterfaceOrientationPortraitstring>
        array>
    dict>
plist>

这是添加之后的info.plist文件,添加的代码为:

 <key>NSAppTransportSecuritykey>
        <dict>
            <key>NSAllowsArbitraryLoadskey>
            <true/>
        dict>

也可以直接进行可视化操作:
更新xcode8之后https连接问题_第1张图片

(2)做了以上的操作,一般就没有问题了,但是我的webView依然不能进行网络的连接,反复试了很多方法,包括删除info文件等,最后使用了一下方法:
更新xcode8之后https连接问题_第2张图片
如图所示,直接来到项目的info显示界面,添加关于红框中的文字。

你可能感兴趣的:(iOS)