TUISecurityStrikeView.h 548 B

1234567891011121314151617181920
  1. //
  2. // TUISecurityStrikeView.h
  3. // TIMCommon
  4. //
  5. // Created by wyl on 2023/10/11.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. #define kTUISecurityStrikeViewTopLineMargin 14.5
  10. #define kTUISecurityStrikeViewTopLineToBottom 28
  11. @interface TUISecurityStrikeView : UIView
  12. @property(nonatomic, strong) UIView * topLine;
  13. @property(nonatomic, strong) UILabel * textLabel;
  14. + (UIImage *)changeImageColorWith:(UIColor *)color image:(UIImage *)image alpha:(CGFloat)alpha;
  15. @end
  16. NS_ASSUME_NONNULL_END