1234567891011121314151617181920212223 |
- //
- // MyClubApplicationTableViewCell.h
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/2/15.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyClubApplicationTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
- @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
- @property (weak, nonatomic) IBOutlet UIImageView *imageType;
- @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|