| 123456789101112131415161718192021 |
- //
- // UserInfoCell.h
- // FunSDKDemo
- //
- // Created by wujiangbo on 2018/11/1.
- // Copyright © 2018年 wujiangbo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UserInfoCell : UITableViewCell
- @property (nonatomic,strong) UILabel *mainTitle;
- @property (nonatomic,strong) UILabel *descriptionTitle;
- @end
- NS_ASSUME_NONNULL_END
|