1234567891011121314151617181920212223242526 |
- //
- // UserLoginFastCell.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/30.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "XSUser.h"
- @interface UserLoginFastCell : UITableViewCell
- @property (nonatomic, strong) IBOutlet UIImageView* iconImageView;
- @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
- @property (nonatomic, strong) IBOutlet UILabel* subtitleLabel;
- @property (nonatomic, strong) IBOutlet UIButton* deleteButton;
- @property (nonatomic, strong) IBOutlet UIButton* selecteButton;
- @property (nonatomic, strong) XSUser* user;
- @end
|