| 12345678910111213141516171819202122 |
- //
- // PersonalCenterHeaderCell.h
- // HappyWork
- //
- // Created by 张晓光 on 2019/9/20.
- // Copyright © 2019 张晓光. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PersonalCenterHeaderCell : UITableViewCell
- @property (nonatomic, strong) UIButton *headerBtn;//头像
- @property (nonatomic, strong) UILabel *nameLabel;//名字
- @property (nonatomic, strong) UILabel *authLabel;//认证状态
- @property (nonatomic, strong) UIButton *setBtn;//设置
- @end
- NS_ASSUME_NONNULL_END
|