MineViewController.h 788 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MineViewController.h
  3. // AICity
  4. //
  5. // Created by 刘伟伟 on 2023/7/7.
  6. // Copyright © 2023 wei.z. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MineViewController : UIViewController
  11. @end
  12. @interface MineTopCell : UITableViewCell
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @end
  15. @interface MineCenterCell : UITableViewCell
  16. + (instancetype)cellWithTableView:(UITableView *)tableView;
  17. //0.没有 1.上 2.下 3.全
  18. @property(nonatomic,assign)int type;
  19. //0 剪头 1 文字
  20. @property(nonatomic,assign)int showContentType;
  21. @property(nonatomic,strong)UIView *bgView;
  22. @property(nonatomic,strong)UIImageView *icon;
  23. @property(nonatomic,strong)UILabel *tit;
  24. @property(nonatomic,strong)UILabel *titDetail;
  25. @end
  26. NS_ASSUME_NONNULL_END