1234567891011121314151617181920212223242526272829 |
- //
- // YMPersonalPageAlbumCellViewModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/17.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMPersonalPageAlbumCellViewModel.h"
- #import "YMPersonalInfoModel.h"
- @interface YMPersonalPageAlbumCellViewModel ()
- /// 相册链接
- @property (nonatomic, copy, readwrite) NSString *albumUrl;
- /// 是否是视频 YES是 NO不是
- @property (nonatomic, assign, readwrite) BOOL isVideo;
- @end
- @implementation YMPersonalPageAlbumCellViewModel
- - (void)ym_initialize{
- [super ym_initialize];
- if ([self.params[ParamsModel] isKindOfClass:[YMAlbumsModel class]]) {
- YMAlbumsModel *model = self.params[ParamsModel];
- self.albumUrl = model.url;
- self.isVideo = model.is_video != 0 ? YES : NO;
- }
-
- }
- @end
|