zoukankan      html  css  js  c++  java
  • AFNetworking 使用中报错

    好久没用 http相关的库,今天使用, 选用AFNetworking,github下载,引入工程,记录下中间使用中遇到的问题

     

    1.在非ARC工程中使用ARC的文件,在project->Build Phases->Compile Sources 文件编辑参数 -fobjc-arc

     PS:在ARC项目中使用非ARC文件:文件编辑参数 -fnoobjc-arc

     

    2.编译时报错,

    Undefined symbols for architecture i386:
      "_UTTypeCopyPreferredTagWithClass", referenced from:
          _AFContentTypeForPathExtension in AFURLRequestSerialization.o
      "_UTTypeCreatePreferredIdentifierForTag", referenced from:
          _AFContentTypeForPathExtension in AFURLRequestSerialization.o
      "_kUTTagClassFilenameExtension", referenced from:
          _AFContentTypeForPathExtension in AFURLRequestSerialization.o
      "_kUTTagClassMIMEType", referenced from:
          _AFContentTypeForPathExtension in AFURLRequestSerialization.o
    ld: symbol(s) not found for architecture i386
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    解决 project->Build Phases-> Link Binary With Libraries 添加
    MobileCoreServices.framework
    SystemConfiguration.framework

    3. 请求url 出现错误:The resource could not be loaded because the App Transport Security policy requires the use of a secure connection. 
    原因iOS9引入了新特性App Transport Security (ATS),要求App内访问的网络必须使用HTTPS协议。

      解决方案: 1.在Info.plist中添加NSAppTransportSecurity类型Dictionary

           2.在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES

    4.编译出现   AF_Require_noErr(SecItemExport(key, kSecFormatUnknown, kSecItemPemArmour, NULL, &data), _out);  出现kSecFormatUnknown无法识别  如果是2.6版本,请换2.5 就没问题了

     

  • 相关阅读:
    Git分支合并:Merge、Rebase的选择
    linux系统下MySQL表名区分大小写问题
    Spring Mvc和Spring Boot读取Profile方式
    Git删除远程分支
    TortoiseGit push免输密码
    git [command line] fatal: Authentication failed for
    Jenkins [Error] at org.codehaus.cargo.container.tomcat.internal.AbstractTomcatManagerDeployer.redeploy(AbstractTomcatManagerDeployer.java:192)
    FAIL
    WIN下修改host文件并立即生效
    MYSQL 创建数据库SQL
  • 原文地址:https://www.cnblogs.com/liumianweifeng/p/4818778.html
Copyright © 2011-2022 走看看