簡體   English   中英

更新xcode 6.4到xcode 7后出現此問題

[英]after updating xcode 6.4 to xcode 7 getting this issue

我在將xcode 6.4更新為7.0后遇到此問題。

我正在使用Objective C

 ld: embedded dylibs/frameworks are only supported on iOS 8.0 and later (@rpath/AFNetworking.framework/AFNetworking) for architecture arm64
        clang: error: linker command failed with exit code 1 (use -v to see invocation)

如何解決這個問題?

我試圖添加Prefix Header但我無法獲得LLVM 6.0那里我得到LLVM 7.0“

我發現這個SO帖子可能有解決方案。 Keith Smiley建議這些進口聲明:

#ifdef __OBJC__
  #import <UIKit/UIKit.h>
  #import <SystemConfiguration/SystemConfiguration.h>
  #import <MobileCoreServices/MobileCoreServices.h>
#endif

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM