// // FATBaseLoadingView.h // FinApplet // // Created by luojian on 2021/10/27. // Copyright © 2021 finogeeks. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface FATLoadingAnimationView : UIView /** 动画圆点 */ @property (nonatomic, strong) UIView *dotView; /** 中间的小程序图标 可以修改图标的位置、大小等,图标的图片请通过开放平台修改 */ @property (nonatomic, strong) UIImageView *iconImageView; /** 动画轨道 */ @property (nonatomic, strong) CAShapeLayer *trackLayer; /** 图片与轨道的间距 */ @property (nonatomic, assign) CGFloat padding; /** 动画效果 */ @property (nonatomic, strong) CAKeyframeAnimation *animation; @end @interface FATBaseLoadingView : UIView @property (nonatomic, strong) FATLoadingAnimationView *loadingView; /** 小程序标题 可以修改标题的颜色、位置、大小等,标题的文字请通过开放平台修改 */ @property (nonatomic, strong) UILabel *titleLabel; /** 底部图片 */ @property (nonatomic, strong) UIImageView *bottomImageView; @end NS_ASSUME_NONNULL_END