TUIFitButton.h 639 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TUIFitButton.h
  3. // TUICore
  4. //
  5. // Created by wyl on 2022/5/24.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUIFitButton : UIButton
  11. @property(nonatomic, assign) CGRect titleRect;
  12. @property(nonatomic, assign) CGRect imageRect;
  13. @property(nonatomic, assign) CGSize imageSize;
  14. @property(nonatomic, assign) CGSize titleSize;
  15. @property(nonatomic, strong) UIImage* hoverImage;
  16. @property(nonatomic, strong) UIImage* normalImage;
  17. @end
  18. @interface TUIBlockButton : TUIFitButton
  19. @property(nonatomic, copy) void (^clickCallBack)(id button);
  20. @end
  21. NS_ASSUME_NONNULL_END