1234567891011121314151617181920212223 |
- //
- // IncomeCountBottomView.h
- // TeacherDaya
- //
- // Created by Kyle on 2021/5/11.
- // Copyright © 2021 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface IncomeCountBottomView : UIView
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- + (instancetype)shareInstance;
- - (void)configSource:(NSArray *)titleArray amountArray:(NSArray *)amountArray;
- @end
- NS_ASSUME_NONNULL_END
|