Sha256: 83bf528765a0f416e3fc82ac9e9d9a75f27aa0f02a46773f80386a0a32b3dbfc
Contents?: true
Size: 1014 Bytes
Versions: 3
Compression:
Stored size: 1014 Bytes
Contents
/* * This file is part of the SDWebImage package. * (c) Olivier Poitrey <rs@dailymotion.com> * (c) Jamie Pinkham * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #import <TargetConditionals.h> #ifdef __OBJC_GC__ #error SDWebImage does not support Objective-C Garbage Collection #endif #if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_5_0 #error SDWebImage doesn't support Deployement Target version < 5.0 #endif #if !TARGET_OS_IPHONE #import <AppKit/AppKit.h> #ifndef UIImage #define UIImage NSImage #endif #ifndef UIImageView #define UIImageView NSImageView #endif #else #import <UIKit/UIKit.h> #endif #if OS_OBJECT_USE_OBJC #define SDDispatchQueueRelease(q) #define SDDispatchQueueSetterSementics strong #else #define SDDispatchQueueRelease(q) (dispatch_release(q)) #define SDDispatchQueueSetterSementics assign #endif extern inline UIImage *SDScaledImageForPath(NSString *path, NSObject *imageOrData);
Version data entries
3 entries across 3 versions & 1 rubygems