通过Cocoapods集成Apptentive iOS SDK时出现未定义的符号错误



通过Cocoapods集成Apptentive iOS SDK时,出现以下错误:

Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_ATConnect", referenced from:
      objc-class-ref in AppDelegate.o
  "_OBJC_CLASS_$_ATAppRatingFlow", referenced from:
      objc-class-ref in AppDelegate.o
  "_OBJC_CLASS_$_ATSurveys", referenced from:
      objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture i386
clang: 
error: linker command failed with exit code 1 (use -v to see invocation)

应该如何修复这些错误?

我们发现

,将Apptentive cocoa pod添加到现有的Xcode项目中可能不包括一些必需的框架。

检查链接器标志:

Target > Build Settings > Other Linker Flags

应会看到-lApptentiveConnect列为链接器标志:

... -ObjC -lApptentiveConnect ...

您还应该看到我们列出的所需框架:

  • 加速
  • 核心数据
  • 核心文本
  • 核心显卡
  • 核心电话
  • 基础
  • 石英芯
  • 商店套件
  • 系统配置
  • UIKit

    -ObjC -lApptentiveConnect -framework Accelerate -framework CoreData -framework CoreGraphics -framework CoreText -framework Foundation -framework QuartzCore -framework SystemConfiguration -framework UIKit -framework CoreTelephony -framework StoreKit 
    

相关内容

  • 没有找到相关文章

最新更新