博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
新浪微博客户端(31)-显示相册图片上的GIF标记
阅读量:6278 次
发布时间:2019-06-22

本文共 1275 字,大约阅读时间需要 4 分钟。

 

DJStatusPhotoView.h

#import 
@class DJPhoto;@interface DJStatusPhotoView : UIImageView@property (nonatomic,strong) DJPhoto *photo;@end

 

DJStatusPhotoView.m

#import "DJStatusPhotoView.h"#import "UIImageView+WebCache.h"#import "DJPhoto.h"@interface DJStatusPhotoView()// GIF标记@property (nonatomic,weak) UIImageView *gifView;@end@implementation DJStatusPhotoView- (UIImageView *)gifView {    if (!_gifView) {        UIImage *gifImage = [UIImage imageNamed:@"timeline_image_gif"];        UIImageView *gifView = [[UIImageView alloc] initWithImage:gifImage];        [self addSubview:gifView];        _gifView = gifView;    }    return _gifView;}- (void)setPhoto:(DJPhoto *)photo {    _photo = photo;    // 设置显示图片    [self sd_setImageWithURL:[NSURL URLWithString:photo.thumbnail_pic] placeholderImage:[UIImage imageNamed:@"timeline_image_placeholder"]];        // 根据图片类型判断是否显示GIF标记(注意cell会重复利用)    self.gifView.hidden = ![photo.thumbnail_pic.lowercaseString hasSuffix:@"gif"];    //    DJLog(@"%@",photo.thumbnail_pic);        }// 调整gifView的位置(由于使用的是initWithImage创建,所以gifView有宽和高,因此只需要设置x,y值即可)- (void)layoutSubviews {    [super layoutSubviews];    self.gifView.x = self.width - self.gifView.width;    self.gifView.y = self.height - self.gifView.height;    }@end

最终效果:

 

转载地址:http://gdiva.baihongyu.com/

你可能感兴趣的文章
玩转Edas应用部署
查看>>
music-音符与常用记号
查看>>
sql操作命令
查看>>
zip 数据压缩
查看>>
Python爬虫学习系列教程
查看>>
【数据库优化专题】MySQL视图优化(二)
查看>>
【转载】每个程序员都应该学习使用Python或Ruby
查看>>
PHP高级编程之守护进程,实现优雅重启
查看>>
PHP字符编码转换类3
查看>>
rsync同步服务配置手记
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
package.json
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>