PersonalCenterHeaderCell.h 533 B

12345678910111213141516171819202122
  1. //
  2. // PersonalCenterHeaderCell.h
  3. // HappyWork
  4. //
  5. // Created by 张晓光 on 2019/9/20.
  6. // Copyright © 2019 张晓光. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PersonalCenterHeaderCell : UITableViewCell
  11. @property (nonatomic, strong) UIButton *headerBtn;//头像
  12. @property (nonatomic, strong) UILabel *nameLabel;//名字
  13. @property (nonatomic, strong) UILabel *authLabel;//认证状态
  14. @property (nonatomic, strong) UIButton *setBtn;//设置
  15. @end
  16. NS_ASSUME_NONNULL_END