Open source pi_imageNamed methods (#2859)

This commit is contained in:
Huy Nguyen
2017-01-04 18:57:23 +00:00
committed by Adlai Holler
parent 23c81b150d
commit 89d4193757
2 changed files with 64 additions and 0 deletions

View File

@@ -70,6 +70,27 @@ NS_ASSUME_NONNULL_BEGIN
roundedCorners:(UIRectCorner)roundedCorners
scale:(CGFloat)scale AS_WARN_UNUSED_RESULT;
/**
* A version of imageNamed that caches results because loading an image is expensive.
* Calling with the same name value will usually return the same object. A UIImage,
* after creation, is immutable and thread-safe so it's fine to share these objects across multiple threads.
*
* @param imageName The name of the image to load
* @return The loaded image or nil
*/
+ (UIImage *)as_imageNamed:(NSString *)imageName;
/**
* A version of imageNamed that caches results because loading an image is expensive.
* Calling with the same name value will usually return the same object. A UIImage,
* after creation, is immutable and thread-safe so it's fine to share these objects across multiple threads.
*
* @param imageName The name of the image to load
* @param traitCollection The traits associated with the intended environment for the image.
* @return The loaded image or nil
*/
+ (UIImage *)as_imageNamed:(NSString *)imageName compatibleWithTraitCollection:(nullable UITraitCollection *)traitCollection;
@end
NS_ASSUME_NONNULL_END

View File

@@ -122,4 +122,47 @@
return result;
}
#pragma mark - as_imageNamed
UIImage *cachedImageNamed(NSString *imageName, UITraitCollection *traitCollection)
{
static NSCache *imageCache = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
// Because NSCache responds to memory warnings, we do not need an explicit limit.
// all of these objects contain compressed image data and are relatively small
// compared to the backing stores of text and image views.
imageCache = [[NSCache alloc] init];
});
UIImage *image = nil;
if ([imageName length] > 0) {
NSString *imageKey = imageName;
if (traitCollection) {
char imageKeyBuffer[256];
snprintf(imageKeyBuffer, sizeof(imageKeyBuffer), "%s|%ld|%ld", imageName.UTF8String, (long)traitCollection.horizontalSizeClass, (long)traitCollection.verticalSizeClass);
imageKey = [NSString stringWithUTF8String:imageKeyBuffer];
}
image = [imageCache objectForKey:imageKey];
if (!image) {
image = [UIImage imageNamed:imageName inBundle:nil compatibleWithTraitCollection:traitCollection];
if (image) {
[imageCache setObject:image forKey:imageKey];
}
}
}
return image;
}
+ (UIImage *)as_imageNamed:(NSString *)imageName
{
return cachedImageNamed(imageName, nil);
}
+ (UIImage *)as_imageNamed:(NSString *)imageName compatibleWithTraitCollection:(UITraitCollection *)traitCollection
{
return cachedImageNamed(imageName, traitCollection);
}
@end