ChooseTypeViewController.m 3.21 KB
Newer Older
n22's avatar
n22 committed
1 2 3 4
//
//  ChooseTypeViewController.m
//  XFFruit
//
n22's avatar
n22 committed
5
//  Created by 陈俊俊 on 15/8/26.
n22's avatar
n22 committed
6 7 8 9 10 11
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ChooseTypeViewController.h"
#define TopMargin 50
#define TableHeight 50
陈俊俊's avatar
陈俊俊 committed
12
@interface ChooseTypeViewController ()
n22's avatar
n22 committed
13 14 15 16 17 18 19 20 21
{
    
}
@end

@implementation ChooseTypeViewController

- (void)viewDidLoad {
    [super viewDidLoad];
陈俊俊's avatar
陈俊俊 committed
22 23 24
    self.title = @"类型";
    [self.dataArr addObject:@"紧急"];
    [self.dataArr addObject:@"普通"];
陈俊俊's avatar
陈俊俊 committed
25 26
    self.selectTextFiled = nil;
    self.tableView.frame = CGRectMake(0, 5, ScreenSize.width, ScreenSize.height - 64 - 5);
陈俊俊's avatar
陈俊俊 committed
27 28 29 30 31 32 33 34 35 36 37 38 39
    if (self.selectStr.length>0) {
        if (!self.isMoreChose) {
            for (NSInteger i = 0;i< self.dataArr.count; i++) {
                NSString *type = self.dataArr[i];
                if ([type isEqualToString:self.selectStr]) {
                    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
                    self.currentIndexPath = indexPath;
                    break;
                }
            }
            [self.tableView reloadData];
        }
    }
n22's avatar
n22 committed
40
}
陈俊俊's avatar
陈俊俊 committed
41
- (void)createRefresh{}
n22's avatar
n22 committed
42 43 44 45 46 47 48 49 50 51 52 53

#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;
    }
    
陈俊俊's avatar
陈俊俊 committed
54 55
    if (self.currentIndexPath) {
        if (indexPath.row == self.currentIndexPath.row) {
n22's avatar
n22 committed
56
            cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
57 58
            cell.titleLabel.textColor = BASESELECT_COLOR;

n22's avatar
n22 committed
59 60
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
61 62
            cell.titleLabel.textColor = [UIColor blackColor];

n22's avatar
n22 committed
63 64 65
        }
    }else{
        cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
66 67
        cell.titleLabel.textColor = [UIColor blackColor];

n22's avatar
n22 committed
68 69 70 71 72 73 74 75
    }
    if (self.dataArr.count > 0) {
        NSString *type = self.dataArr[indexPath.row];
        [cell setTitleStr:type];
    }
    return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
陈俊俊's avatar
陈俊俊 committed
76 77
    MaskCell *currentCell = (MaskCell *)[tableView cellForRowAtIndexPath:self.currentIndexPath];
    currentCell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
78 79
    currentCell.titleLabel.textColor = [UIColor blackColor];

陈俊俊's avatar
陈俊俊 committed
80 81
    MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath];
    cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
82
    cell.titleLabel.textColor = BASESELECT_COLOR;
陈俊俊's avatar
陈俊俊 committed
83
    self.currentIndexPath = indexPath;
n22's avatar
n22 committed
84
}
陈俊俊's avatar
陈俊俊 committed
85 86


n22's avatar
n22 committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
- (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