个人中心cell去掉点击背景

This commit is contained in:
chenguilong
2022-07-27 16:33:24 +08:00
parent 4ffa485df5
commit 4c7d635719

View File

@@ -113,15 +113,15 @@
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.presenter getUserInfo];
[self.presenter getPersonItemList];
[self.presenter getClanDetailInfo];
[self.presenter getLittleGameList];
[self.presenter getMineBannerList];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self.presenter getUserWalletInfo];
[self.presenter getPersonItemList];
[self.presenter getClanDetailInfo];
[self.presenter getLittleGameList];
[self.presenter getMineBannerList];
}
#pragma mark - Response
@@ -319,6 +319,7 @@
cell.datasource = self.functionArray;
}
cell.delegate = self;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
} else if (indexPath.section == 1) {
XPMineGameTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([XPMineGameTableViewCell class])];
@@ -329,6 +330,7 @@
cell.datasource = self.littleGameArray;
}
cell.delegate = self;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
} else {
XPHomeBannerTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([XPHomeBannerTableViewCell class])];
@@ -339,6 +341,7 @@
cell.bannerList = self.bannerArray;
}
cell.delegate = self;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
}