123456789101112131415161718192021222324252627282930313233 |
- //
- // XYPersonalCenterHeaderView.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2019/12/21.
- // Copyright © 2019 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYPersonalCenterHeaderViewDelegate <NSObject>
- - (void)loginAction;
- - (void)vipAction;
- /// 点击item的回调
- /// @param inex 0粉丝 1关注 2魅力值 3富豪值
- - (void)didSelectClickItemWithIndex:(NSInteger)inex;
- @end
- @interface XYPersonalCenterHeaderView : UITableViewHeaderFooterView<YLConfigureView>
- @property (nonatomic, readwrite, weak) id<XYPersonalCenterHeaderViewDelegate>delegate;
- - (void)configureViewModel:(id)viewModel;
- @end
- NS_ASSUME_NONNULL_END
|