IncomeCountBottomView.h 429 B

1234567891011121314151617181920212223
  1. //
  2. // IncomeCountBottomView.h
  3. // TeacherDaya
  4. //
  5. // Created by Kyle on 2021/5/11.
  6. // Copyright © 2021 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface IncomeCountBottomView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *bgView;
  12. + (instancetype)shareInstance;
  13. - (void)configSource:(NSArray *)titleArray amountArray:(NSArray *)amountArray;
  14. @end
  15. NS_ASSUME_NONNULL_END