// // ChooseCostViewController.m // XFFruit // // Created by 陈俊俊 on 15/9/7. // Copyright (c) 2015年 Xummer. All rights reserved. // #import "ChooseCostViewController.h" #define TopMargin 50 #define TableHeight 50 @interface ChooseCostViewController () @end @implementation ChooseCostViewController - (void)viewDidLoad { [super viewDidLoad]; self.title = @"类型"; [self.dataArr addObject:@"运费"]; [self.dataArr addObject:@"人工费"]; [self.dataArr addObject:@"装卸费"]; [self.dataArr addObject:@"杂费"]; self.selectTextFiled = nil; self.tableView.frame = CGRectMake(0, 5, ScreenSize.width, ScreenSize.height - 64 - 5); } - (void)createRefresh{} #pragma mark - 协议方法 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *cellID = @"MaskCell"; MaskCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID]; if (cell == nil) { cell = [[MaskCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID totalWidth:ScreenSize.width totalHeight:TableHeight]; tableView.separatorStyle = UITableViewCellSeparatorStyleNone; cell.selectionStyle = UITableViewCellSelectionStyleNone; cell.Commitbtn.hidden = YES; } if (self.currentIndexPath) { if (indexPath.row == self.currentIndexPath.row) { cell.Commitbtn.hidden = NO; }else{ cell.Commitbtn.hidden = YES; } }else{ cell.Commitbtn.hidden = YES; } if (self.dataArr.count > 0) { NSString *type = self.dataArr[indexPath.row]; [cell setTitleStr:type]; } return cell; } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ MaskCell *currentCell = (MaskCell *)[tableView cellForRowAtIndexPath:self.currentIndexPath]; currentCell.Commitbtn.hidden = YES; MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath]; cell.Commitbtn.hidden = NO; self.currentIndexPath = indexPath; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } /* #pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller. } */ @end