How to import Social framework only for iOS 6? I want to disable the Social Framework for other iOS versions. Currently I am trying this and I also tried to change the Frame
#import
#if defined(__IPHONE_6_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_6_0
#import
#import
#elif defined(__IPHONE_5.0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_5_0
#import
#import
#else
#error Your SDK is too old ! Need at least 5.0.
#endif