第一種方法:
先說原理:
1.在cell中定義一個屬性:isSelected用來標(biāo)記cell的選中狀態(tài);
2.在Controller中定義一個屬性:lastCell,標(biāo)記上次選中的cell, 再定義另外一個屬性:selectedIndexPath,用來標(biāo)記當(dāng)前選中的cell的索引;
3.在Controller的返回cell的代理方法中,判斷cell的isSelected狀態(tài),根據(jù)狀態(tài)返回不同的cell樣式(展開或折疊樣式);
4.在返回高度的方法中同樣的根據(jù)狀態(tài)返回高度;
5.在didSelectedRowAtIndexPath代理方法中,先獲取到當(dāng)前點擊的cell,再判斷本次點擊的cell是否是之前選中的cell(即lastCell);如果不是,則說明點擊了一個新的cell,則將上次點擊的cell的選中狀態(tài)置為NO (lastCell.isSelected = NO); 再將當(dāng)前點擊的cell的isSelected狀態(tài)取反;
如果本次點擊的cell還是上次點擊的cell,則直接將當(dāng)前cell的isSelected狀態(tài)取反即可; 之后刷新tabelView, 最后將本次點擊的cell賦給lastCell;
代碼:
//dataSource方法中
//返回cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell * cell = nil;
XCommodity *producte = self.selectedCommodities[indexPath.row];
if (producte.isSelected){
cell = [tableView dequeueReusableCellWithIdentifier:selectedCommodityCellIdenifier1 forIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
} else {
cell = [tableView dequeueReusableCellWithIdentifier:selectedCommodityCellIdenifier forIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
return cell;
}
//返回高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
XCommodity *cc =self.selectedCommodities[indexPath.row];
if(cc.isSelected) {
return 164;
}
return 95;
}
//delegate方法中
-(void)reset {
if (self.lastCommodity) {
self.lastCommodity.isSelected = NO;
}
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
XCommodity *producte = self.selectedCommodities[indexPath.row];
if (self.lastCommodity != producte ) {
[self reset];
}
self.tableViewSelecteRow = indexPath.row;
if (producte.isSelected) {
producte.isSelected = NO;
} else {
producte.isSelected = YES;
}
[tableView reloadData];
self.lastCommodity = producte;
[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
}
第二種方法:
<這種方法有缺陷:點擊同一個cell,第一次點擊展開,再點擊無法折疊>
直接貼代碼吧
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//先獲取到對應(yīng)的model
XEntityTicketModel *model = self.selectedEntityArr[indexPath.row];
if (self.selectedIndexPath && indexPath.row == self.selectedIndexPath.row) {
//展開
XSelectedEntityCell *cell = [tableView dequeueReusableCellWithIdentifier:@"selectedEntityCell" forIndexPath:indexPath];
[cell configureSelectedCellWithModel:model];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
//事件響應(yīng)
[cell.cancelBtn addTarget:self action:@selector(cancleBtnActon:) forControlEvents:UIControlEventTouchUpInside];
[cell.reduceBtn addTarget:self action:@selector(reduceBtnAction:) forControlEvents:UIControlEventTouchUpInside];
[cell.increaseBtn addTarget:self action:@selector(increaseBtnAction:) forControlEvents:UIControlEventTouchUpInside];
return cell;
} else {
//收起
XUnselectedEntityCell *cell = [tableView dequeueReusableCellWithIdentifier:@"unSelectedCell" forIndexPath:indexPath];
[cell configureUnselectedCellWithModel:model];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
return nil;
}
//返回高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (self.selectedIndexPath && indexPath.row == self.selectedIndexPath.row) {
return 165;
}
return 90;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
//記錄下選中的索引
self.selectedIndexPath = indexPath;
[self.tableView reloadData];
}
以上,OVER.