繁体   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