TIButton.h 731 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // TiUIButton.h
  3. // TiSDKDemo
  4. //
  5. // Created by iMacA1002 on 2019/12/4.
  6. // Copyright © 2020 Tillusory Tech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TiIndicatorAnimationView : UIView
  10. -(void)startAnimation;
  11. -(void)endAnimation;
  12. @end
  13. @interface TIButton : UIButton
  14. //scaling 为图片缩放比
  15. -(instancetype _Nullable )initWithScaling:(CGFloat)scaling;
  16. - (void)setTitle:(nullable NSString *)title withImage:(nullable UIImage *)image withTextColor:(nullable UIColor *)color forState:(UIControlState)state;
  17. -(void)setBorderWidth:(CGFloat)W BorderColor:(nullable UIColor *)color forState:(UIControlState)state;
  18. -(void)setDownloaded:(BOOL)downloaded;
  19. -(void)startAnimation;
  20. -(void)endAnimation;
  21. @end