添加testflight sdk后无法构建项目

 Undefined symbols for architecture i386:
  "_TFLog", referenced from:
      -[IBIZAAppDelegate application:didFinishLaunchingWithOptions:] in IBIZAAppDelegate.o
      -[IBIZAAppDelegate application:didRegisterForRemoteNotificationsWithDeviceToken:] in IBIZAAppDelegate.o
      -[IBIZAAppDelegate application:didReceiveRemoteNotification:] in IBIZAAppDelegate.o
      -[IBIZAAppDelegate application:didFailToRegisterForRemoteNotificationsWithError:] in IBIZAAppDelegate.o
      -[IBIZAAppDelegate registerSuccess:] in IBIZAAppDelegate.o
      -[IBIZAAppDelegate registerFail:] in IBIZAAppDelegate.o
      -[MainViewController viewDidLoad] in MainViewController.o
      ...
  "_OBJC_CLASS_$_TestFlight", referenced from:
      objc-class-ref in IBIZAAppDelegate.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我正在使用Xcode 4.2。通常,使用Xcode 4.3在另一台计算机上构建相同的项目。 SDK已添加到所有需要的目标,还尝试了与此主题相关的所有解决方案。

最佳答案

我有一个类似的问题,从TestFlight 0.8.1更新到0.8.3。我重新阅读了README.txt文件中的说明。我相信您现在必须添加libz.dylib(“如何将SDK集成到我的项目中”的步骤3)。之后,我可以在模拟器和开发iPad上运行我的应用程序。

10-08 08:27