weex使用SDWebImage4.0不能显示动图

- (id<WXImageOperationProtocol>)downloadImageWithURL:(NSString *)url imageFrame:(CGRect)imageFrame userInfo:(NSDictionary *)userInfo completed:(void(^)(UIImage *image,  NSError *error, BOOL finished))completedBlock {

    return (id<WXImageOperationProtocol>)[[SDWebImageManager sharedManager] loadImageWithURL:[NSURL URLWithString:url] options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize, NSURL * _Nullable targetURL) {

    } completed:^(UIImage * _Nullable image, NSData * _Nullable data, NSError * _Nullable error, SDImageCacheType cacheType, BOOL finished, NSURL * _Nullable imageURL) {

        if (completedBlock) {

            completedBlock(image, error, finished);

        }

    }];

}

sd4.0的下载图片api和weex手册中示例不一样,有碰到相同问题的吗?

Qyouu
浏览 1005回答 2
2回答

LEATH

weex只是提让原生端来接管了展示图片的能力,实际以你的sd4.0的api为准

蝴蝶不菲

工程里用了两个版本的SDWebImage,3.7.5专门用来下载weex中的图片。因为两个库中会有符号重复冲突,所以我对类名做了自动混淆。
打开App,查看更多内容
随时随地看视频慕课网APP