購(gòu)物軟件不可避免有添加購(gòu)物車的頁(yè)面扮饶,那么購(gòu)物車功能是怎么實(shí)現(xiàn)的吶逗鸣?這里提供一種簡(jiǎn)單的思路,插入本地?cái)?shù)據(jù)庫(kù)帘饶。
先看效果
頁(yè)面結(jié)構(gòu)
本頁(yè)面是由一個(gè)tableview和底部的底部的bottomView構(gòu)成
底部的bottomView上有按鈕哑诊,也可以添加其他屬性,比如總價(jià)格及刻,總重量等參數(shù)镀裤。
代碼結(jié)構(gòu)
思路
看到這樣的需求,我想到的是插入本地?cái)?shù)據(jù)庫(kù)缴饭,每一條數(shù)據(jù)都有對(duì)應(yīng)的id和其他的例如價(jià)格等的參數(shù)暑劝,根據(jù)id插入本地是一條可行的方法,為了避免刷新的時(shí)候選中的單元格和沒(méi)選中的單元格的復(fù)用颗搂,我們需要對(duì)按鈕做一點(diǎn)操作担猛。
@interface CustomButton : UIButton
@property (nonatomic,assign)NSInteger indexPathRow;
@end
在這個(gè)GoodCell里面自定義協(xié)議,為了取到某一行的值丢氢。
最重要的是選中與沒(méi)選中的按鈕要顯示不同的顏色
#pragma mark - selectedBtnAction
-(void)selectedBtnAction:(CustomButton *)btn
{
btn.selected=!btn.selected;
[self.delegate GoodsCellDelegateWithIndexPath:btn.indexPathRow];
}
-(void)configWithModel:(GoodsModel *)model{
self.model = model;
if (model.btnIsSelected==YES) {
[self.selectedBtn setImage:[UIImage imageNamed:@"sendcar_selected"] forState:UIControlStateNormal];
}else{
[self.selectedBtn setImage:[UIImage imageNamed:@"sendcar_unselected"] forState:UIControlStateNormal];
}
//運(yùn)單號(hào)
self.cardLabel.text = [NSString stringWithFormat:@"運(yùn)單號(hào):%@",self.model.Ticket_No];
}
控制器界面
代理協(xié)議的實(shí)現(xiàn)
#pragma mark - delegate
-(void)GoodsCellDelegateWithIndexPath:(NSInteger)indexPathRow
{
GoodsModel *cacheModel = self.dataArr[indexPathRow];
if (cacheModel.btnIsSelected) {
// NSLog(@"YES==%@",cacheModel.Ticket_No);
cacheModel.btnIsSelected = NO;
} else {
// NSLog(@"NO==%@",cacheModel.Ticket_No);
cacheModel.btnIsSelected = YES;
}
//插入---刪除 反復(fù)切換
[self.dataManager insertDataFromModel:cacheModel Ticket_No:cacheModel.Ticket_No];
//每次執(zhí)行插入刪除操作就會(huì)刷新底部的車輛的按鈕
[self reloadBottonViewUI];
[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:indexPathRow inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}
#pragma mark - 刷新底部的選車的數(shù)量 reloadBottonViewUI
-(void)reloadBottonViewUI
{
if ([self.dataManager getAllGoodsArrCount]>0) {
[self.toSelectCarBtn setTitle:[NSString stringWithFormat:@"去發(fā)車(%ld)",(long)[self.dataManager getAllGoodsArrCount]] forState:UIControlStateNormal];
}else{
[self.toSelectCarBtn setTitle:@"去發(fā)車" forState:UIControlStateNormal];
}
}
去往下個(gè)頁(yè)面需要選中的有數(shù)據(jù)
#pragma mark - 去選車
-(void)toSelectCarBtnAction
{
if ([self.dataManager getAllGoodsArrCount]>0) {
//do something
[self showSingleAlertViewWith:self title:@"提示" message:@"do something"];
}else{
[self showSingleAlertViewWith:self title:@"提示" message:@"請(qǐng)選擇物品"];
}
}