iOS - .webp图片显示

WebP格式,谷歌(google)开发的一种旨在加快图片加载速度的图片格式。

在iOS中会出现加载webp图片显示空白的情况,提供一种解决办法:

if([imageName hasSuffix:@".webp"]) {
   imageName = [imageName stringByAppendingString:@"?imageView2/format/png"];
}

希望有所帮助~

你可能感兴趣的:(iOS - .webp图片显示)