新浪微博客户端(31)-显示相册图片上的GIF标记

本文介绍了一个名为DJStatusPhotoView的自定义UIView类,该类继承自UIImageView并用于显示图片,支持从URL加载图片及根据图片类型显示GIF标识。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

DJStatusPhotoView.h

#import <UIKit/UIKit.h>

@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

最终效果:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值