| 123456789101112131415161718192021222324252627282930 |
- //
- // MOHeadNormalView.h
- // TIMCommon
- //
- // Created by SuperC on 2025/5/19.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOHeadNormalView : UIView
- /** 头像的宽度 */
- @property (nonatomic, assign) CGFloat headImgWidth;
- /** 是否在直播中 */
- @property (nonatomic, assign) BOOL isLiving;
- /** 是否动画 */
- @property (nonatomic, assign) BOOL isAnimation;
- @property (nonatomic, copy) NSString *imgUrlStr;
- /**道具存储 - 特效类型(0=无资源文件,1=动态webp,2=SVGA,3=VAP,4=Mp4) */
- @property (nonatomic, assign) double effectType;
- - (void)updataViewStatus;
- @end
- NS_ASSUME_NONNULL_END
|