| 12345678910111213141516171819202122232425262728293031 |
- //
- // MineViewController.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/7.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MineViewController : UIViewController
- @end
- @interface MineTopCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- @interface MineCenterCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- //0.没有 1.上 2.下 3.全
- @property(nonatomic,assign)int type;
- //0 剪头 1 文字
- @property(nonatomic,assign)int showContentType;
- @property(nonatomic,strong)UIView *bgView;
- @property(nonatomic,strong)UIImageView *icon;
- @property(nonatomic,strong)UILabel *tit;
- @property(nonatomic,strong)UILabel *titDetail;
- @end
- NS_ASSUME_NONNULL_END
|