IOS TableView實現省市聯動

來源:互聯網
上載者:User

標籤:

之前用UIPickerView實現了省市聯動,上個月網友讓用UITableView給他實現了下。今天也把這些貼出來。

////  ViewController.m//  doubleTable////  Created by City--Online on 15/8/5.//  Copyright (c) 2015年 City--Online. All rights reserved.//#import "ViewController.h"@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>@property(nonatomic,strong) NSDictionary *dicData;//第一個tableView選擇的Index@property (nonatomic,assign) int *firstIndex;@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];        _firstIndex=0;       _firstTable.delegate=self;    _firstTable.dataSource=self;    _firstTable.translatesAutoresizingMaskIntoConstraints = NO;    _firstTable.tableFooterView=[[UIView alloc]initWithFrame:CGRectZero];                _secondTable.delegate=self;    _secondTable.dataSource=self;    _secondTable.translatesAutoresizingMaskIntoConstraints = NO;    _secondTable.tableFooterView=[[UIView alloc]initWithFrame:CGRectZero];        _dicData[email protected]{@"廣東省":@[@"深圳",@"廣州",@"東莞"],@"河南省":@[@"駐馬店",@"周口",@"鄭州"]};              [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[_firstTable]-0-[_secondTable(_firstTable)]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_firstTable,_secondTable)]];    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-80-[_firstTable]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_firstTable)]];    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-80-[_secondTable]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_secondTable)]];}- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    if (tableView==_firstTable) {        return _dicData.allKeys.count;    }    else if (tableView==_secondTable)    {        NSString *key=[_dicData.allKeys objectAtIndex:_firstIndex];        NSArray *arr=[_dicData objectForKey:key];        return arr.count;    }    return 0;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:@"Cell"];    if (cell==nil) {        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];    }        if (tableView==_firstTable) {        if (indexPath.row==_firstIndex) {            cell.backgroundColor=[UIColor redColor];        }        else        {            cell.backgroundColor=[UIColor whiteColor];        }         cell.textLabel.text=[_dicData.allKeys objectAtIndex:indexPath.row];    }    else    {        cell.backgroundColor=[UIColor grayColor];        NSString *key=[_dicData.allKeys objectAtIndex:_firstIndex];        NSArray *arr=[_dicData objectForKey:key];        cell.textLabel.text=[arr objectAtIndex:indexPath.row];    }       return cell;}- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{    if (tableView==_firstTable) {        _firstIndex=indexPath.row;        [_secondTable reloadData];        [_firstTable reloadData];    }    else if (tableView==_secondTable)    {        NSLog(@"%ld  %ld",_firstIndex,indexPath.row);    }}-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {        [cell setSeparatorInset:UIEdgeInsetsZero];    }    #ifdef __IPHONE_8_0    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {        [cell setLayoutMargins:UIEdgeInsetsZero];    }        if([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]){        [cell setPreservesSuperviewLayoutMargins:NO];    }#endif}- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}@end

IOS TableView實現省市聯動

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.