ios - after updating xcode 6.4 to xcode 7 getting this issue -


i getting issue after updating xcode 6.4 7.0.

i using objective c

 ld: embedded dylibs/frameworks supported on ios 8.0 , later (@rpath/afnetworking.framework/afnetworking) architecture arm64         clang: error: linker command failed exit code 1 (use -v see invocation) 

how fix ?

i tried add prefix header unable llvm 6.0 there getting llvm 7.0”

i found this post might have solution. keith smiley suggested these import statements:

#ifdef __objc__   #import <uikit/uikit.h>   #import <systemconfiguration/systemconfiguration.h>   #import <mobilecoreservices/mobilecoreservices.h> #endif 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -