美文网首页
iOS - .webp图片显示

iOS - .webp图片显示

作者: codemovie | 来源:发表于2019-04-09 12:26 被阅读0次

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

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

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

    希望有所帮助~

    相关文章

      网友评论

          本文标题:iOS - .webp图片显示

          本文链接:https://www.haomeiwen.com/subject/tprbiqtx.html