# AnimationLoadingImage **Repository Path**: developeral/AnimationLoadingImage ## Basic Information - **Project Name**: AnimationLoadingImage - **Description**: 使用SDWebImage简单实现的图片下载动画显示效果 非常简单 一句话调用 - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-09-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #AnimationLoadingImage #使用SDWebImage实现的图片下载动画显示效果(只有从网络上新下载的才添加动画 本地已经缓存的不添加) ### 动画效果 ![输入图片说明](http://git.oschina.net/uploads/images/2016/0901/170942_2bc7ad01_727503.gif "在这里输入图片标题") #使用方法 ``` #import "UIImageView+AnimationLoading.h" ``` ``` /** * 下载图片 并且动画显示 * @param strUrl 图片地址(字符串哦) * @param pImage 占位图片 */ -(void)setImageWithAnimationOfUrl:(NSString *)strUrl placeHolder:(UIImage *)pImage; ```