DJStatusPhotoView.m

#import "DJStatusPhotoView.h"
#import "UIImageView+WebCache.h"
#import "DJPhoto.h" @interface DJStatusPhotoView() // GIF标记
@property (nonatomic,weak) UIImageView *gifView; @end @implementation DJStatusPhotoView - (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) { // typedef NS_ENUM(NSInteger, UIViewContentMode) {
// UIViewContentModeScaleToFill, // 默认值,拉伸并填充到整个ImageView,可能变形
// UIViewContentModeScaleAspectFit, // 拉伸至完全显示在imageView里面,不会变形
// UIViewContentModeScaleAspectFill, // 【推荐使用!!!】拉伸至图片的宽度等于imageView的宽度或高度为止
// UIViewContentModeRedraw, // 不常用,当调用setNeedsDisplay的时候,会重绘图片
// UIViewContentModeCenter, // 居中显示,不会拉伸
// UIViewContentModeTop,
// UIViewContentModeBottom,
// UIViewContentModeLeft,
// UIViewContentModeRight,
// UIViewContentModeTopLeft,
// UIViewContentModeTopRight,
// UIViewContentModeBottomLeft,
// UIViewContentModeBottomRight,
// };
//
//
// // self.clipsToBounds 超出边框的部分会剪掉,通常与AspectFill配合使用
//
// // 规律:
// // 1. 凡是带有scale单词的,图片都会拉伸
// // 2. 凡是带有Aspect单词的,图片都会保持原来的宽高比,图片不会变形 self.contentMode = UIViewContentModeScaleAspectFill;
self.clipsToBounds = YES;
}
return self;
} - (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; // 取得缩略图对应的中型图片
NSString *photo_image_url = photo.thumbnail_pic;
photo_image_url = [photo_image_url stringByReplacingOccurrencesOfString:@"thumbnail" withString:@"bmiddle"]; // 设置显示图片
[self sd_setImageWithURL:[NSURL URLWithString:photo_image_url] 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

最终效果:

最新文章

  1. JavaScript随笔1
  2. jQuery不支持hashchange事件?
  3. web负载均衡
  4. 【Spring学习笔记-0】Spring开发所需要的核心jar包
  5. Tomcat配置HTTPS方式生成安全证书
  6. 摄像头(2)调用系统拍照activity来录像
  7. HTML5摇一摇
  8. GBDT详解
  9. Kafka官方文档翻译——简介
  10. 201521123050《Java程序设计》第3周学习总结
  11. hdu6249 区间动态规划
  12. webstrom IDE 激活
  13. Cf Round #403 B. The Meeting Place Cannot Be Changed(二分答案)
  14. javascript 面向对象之路.2 - 小蜜蜂
  15. 精通正则表达式(第三版)—Mastering Regular Expressions,3rd Edition—读书笔记2
  16. 基于Nutch Solr等基于搭建一体化的数据抓取平台
  17. Oracle 连接数据库
  18. 怎么在XY图表中添加注解(LightningChart控件为例)?
  19. RenderPartial和RenderAction区别
  20. D65光源

热门文章

  1. 2016科幻惊悚《第五波》HD720P.中英双字
  2. java系列: 对不起,JavaFX——Java 8目前还不能救你(zz)
  3. Django添加Last-Modified和ETag
  4. Opencv step by step - 基本数据类型
  5. ubuntu 安装编译nginx,并实现HLS推送,,可以实现摄像头直播
  6. 小白安装linux(虚拟机)red hat enterprise linux 6
  7. 【开源】XPShadow, 用阴影让UWP更有层次感
  8. PHP Yii2.0(一):环境搭建 & 问题集锦
  9. 约瑟夫环的java解决
  10. 每天一个linux命令(13):tail 命令