2

通过 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)

应该如何修复这些错误?

4

1 回答 1

0

我们发现,将 Apptentive cocoa pod 添加到现有 Xcode 项目中可能不包含我们需要的一些框架。

检查您的链接器标志:

Target > Build Settings > Other Linker Flags

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

... -ObjC -lApptentiveConnect ...

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

  • 加速
  • 核心数据
  • 核心文本
  • 核心图形
  • 核心电话
  • 基础
  • 石英芯
  • StoreKit
  • 系统配置
  • UIKit

    -ObjC -lApptentiveConnect -framework Accelerate -framework CoreData -framework CoreGraphics -framework CoreText -framework Foundation -framework QuartzCore -framework SystemConfiguration -framework UIKit -framework CoreTelephony -framework StoreKit 
    
于 2013-12-31T23:22:41.987 回答