Update to support Xcode 9 and Xcode 10 currently, will upgrade the IDE version in later version

This commit is contained in:
DreamPiggy 2019-06-10 20:42:23 +08:00
parent 0379273b48
commit e81de4fa39
1 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,16 @@
#import <QuartzCore/QuartzCore.h>
#endif
#if SD_UIKIT
#if __IPHONE_13_0 || __TVOS_13_0 || __MAC_10_15
// Xcode 11
#else
// Supports Xcode 9 && 10 users, for those users, define these enum
static NSInteger UIActivityIndicatorViewStyleMedium = 100;
static NSInteger UIActivityIndicatorViewStyleLarge = 101;
#endif
#endif
#pragma mark - Activity Indicator
@interface SDWebImageActivityIndicator ()