1234567891011121314151617 |
- //
- // LDAchievementDetailView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/8/2.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface LDAchievementDetailView : UIView
- - (instancetype)initWithFrame:(CGRect)frame titles:(NSArray *)titles;
- @property (nonatomic, strong) void (^tapIncomeBlock)(NSInteger index);
- - (void)setAccountInfo:(NSArray *)infoArr;
- @end
|