Add a space between the ? and : in ternarys

This commit is contained in:
Eric Jensen
2016-03-17 10:38:51 -07:00
parent 14a389c5e0
commit 17aebcbaba
11 changed files with 17 additions and 17 deletions

View File

@@ -700,7 +700,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
options.synchronous = YES;
}
PHImageManager *imageManager = strongSelf.imageManager ?: PHImageManager.defaultManager;
PHImageManager *imageManager = strongSelf.imageManager ? : PHImageManager.defaultManager;
[imageManager requestImageForAsset:imageAsset targetSize:request.targetSize contentMode:request.contentMode options:options resultHandler:^(UIImage *image, NSDictionary *info) {
NSError *error = info[PHImageErrorKey];