1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MyClubApplicationTableViewCell.m
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/2/15.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import "MyClubApplicationTableViewCell.h"
- @implementation MyClubApplicationTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- + (instancetype)cellWithTableView:(UITableView *)tableView {
- static NSString *ID = @"MyClubApplicationTableViewCell";
- MyClubApplicationTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
- if (cell == nil) {
- cell = [[[NSBundle mainBundle] loadNibNamed:ID owner:self options:nil] firstObject];
- }
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
- return cell;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|