UserLoginFastCell.h 600 B

1234567891011121314151617181920212223242526
  1. //
  2. // UserLoginFastCell.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/30.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XSUser.h"
  10. @interface UserLoginFastCell : UITableViewCell
  11. @property (nonatomic, strong) IBOutlet UIImageView* iconImageView;
  12. @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
  13. @property (nonatomic, strong) IBOutlet UILabel* subtitleLabel;
  14. @property (nonatomic, strong) IBOutlet UIButton* deleteButton;
  15. @property (nonatomic, strong) IBOutlet UIButton* selecteButton;
  16. @property (nonatomic, strong) XSUser* user;
  17. @end