MOHeadNormalView.h 626 B

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