AccountCenterViewController.h 758 B

123456789101112131415161718192021222324252627282930
  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 AccountCenterViewController : UIViewController
  11. @end
  12. @interface AccountTopCell : UITableViewCell
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @end
  15. @interface AccountCenterCell : 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. @end
  25. NS_ASSUME_NONNULL_END