8-20学习练习[用两个tableview实现类似省市联动选择效果]

在一个View中显示两个tableView,要求使用statedictionary.plist中的数据,其中key作为左边的数据,每点击一个key,在右边的tableView中显示对应的号码列表,并且左边的tableView,前5行为一个分区(title显示top),剩下的为另一个分区(title显示other)

效果图:

问题:1.为什么选择之后取消蓝色背景取消不了

代码:

ViewController.h:

#import <UIKit/UIKit.h>

@interface DXWViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@property (retain, nonatomic) IBOutlet UITableView *TableView1;
@property (retain, nonatomic) IBOutlet UITableView *TableView2;
@property (retain, nonatomic) NSDictionary *dic;//原始数据
@property(retain, nonatomic)NSMutableArray * keys;//可以修改的key(用作分区)
@property(retain,nonatomic)NSArray *secArr;//保存某一个key对应的value
@end

ViewController.m:

#import "DXWViewController.h"
@interface DXWViewController ()

@end

@implementation DXWViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	NSString *path = [[NSBundle mainBundle] pathForResource:@"statedictionary" ofType:@"plist"];
    //最原始的数据,不可改变
    self.dic = [NSDictionary dictionaryWithContentsOfFile:path];
    //NSLog(@"%@",self.dic);

    self.keys = [[NSMutableArray alloc] init];
    NSArray *arr=[self.dic allKeys];
    arr = [arr sortedArrayUsingSelector:@selector(compare:)];
    self.keys = arr;
    self.secArr = [[NSArray alloc] initWithArray:[self.dic objectForKey:[self.keys objectAtIndex:0]]];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];

}

//tableView有多少分区,左边前5行作为一个分区标题top,剩下的为另外一个分区标题other
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    if (tableView == self.TableView1) {
        return 2;
    }
    else
        return 1;
}
//每个cell显示的内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSInteger section = [indexPath section];
    NSInteger row = [indexPath row];
    if (tableView == self.TableView1)
    {
        static NSString *str1 = @"str1";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:str1];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:str1];
        }
        cell.textLabel.text = [self.keys objectAtIndex:row];
        return cell;

    }
    else
    {
        static NSString *str = @"str";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:str];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:str];
        }
        cell.textLabel.text = [self.secArr objectAtIndex:row];
        return  cell;
    }
}

//每个分区对应多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.TableView1) {
        if (section == 0) {
            return 5;
        }
        else
        {
            return ([self.keys count] - 5);
        }
    }
    else
    {
        return [self.secArr count];
    }
}

//在每个分区Title上显示什么内容
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    if (tableView == self.TableView1) {
        if (section == 0)
        {
            return @"top";
        }
        else
        {
            return @"other";
        }
    }
    else
        return nil;
}

//设置索引
//-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
//{
//    if (tableView == self.TableView1) {
//        return [[NSArray alloc] initWithObjects:@"top",@"other", nil];
//    }
//}

//点击选择
-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (tableView == self.TableView1) {
        self.secArr = [[NSArray alloc] initWithArray:[self.dic objectForKey:[self.keys objectAtIndex:[indexPath row]]]];
        NSLog(@"%@",self.secArr);
        //取消选中
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
    }
    [self.TableView2 reloadData];
}

- (void)dealloc {
    [_TableView1 release];
    [_TableView2 release];
    [self.secArr release];
    [self.dic release];
    [self.keys release];
    [super dealloc];
}
@end
时间: 2024-09-15 17:43:39

8-20学习练习[用两个tableview实现类似省市联动选择效果]的相关文章

IOS实现左右两个TableView联动效果_IOS

一.先来看看要实现的效果图 二.小解析,可以先看看后面的! 三.实现 tableView联动 主要分两种状况      1.点击 左侧 cell 让右侧 tableView 滚到对应位置      2.滑动 右侧 tableView 让左侧 tableView 滚到对应位置 1.先实现简单的:点击 左侧 cell 让右侧 tableView 滚到对应位置 //MARK: - 点击 cell 的代理方法 - (void)tableView:(UITableView *)tableView didS

ios tableview-ios两个tableview数据交互

问题描述 ios两个tableview数据交互 ios开发中一个view中有tableview1(上)和tableview2(下)如何实现点击tableview1中的cell可以在tableview2中显示相应的信息 解决方案 首先,两个tableView都是view的成员属性,在tableView1的选中单元格调用的协议方法中,获取view.tableView2,然后将相应的参数传给它,然后刷新view.tableView2的界面就行了

ios-关于两个tableview的传值问题,谢谢谢谢

问题描述 关于两个tableview的传值问题,谢谢谢谢 两个tableview点击第二个tableview中的cell如何把cell里的lable里的值传个第一个tableview里的textfield谢谢哥哥们了(?_?) 解决方案 同一个vc里面么?点击第二个tableview的时候,你肯定可以拿到cell的内容,然后传到第一个tableview里,你自己看要传入哪个cell里的textfield,这都你控制的.随便的很. 解决方案二: https://segmentfault.com/a

ios-iOS swift 一个页面显示两个tableview,怎么解决

问题描述 iOS swift 一个页面显示两个tableview,怎么解决 如何在一个viewcontroller 上显示两个tableview,点击上面的tableview可以更新下面的tableview值,该如何实现呢?用swift实现 解决方案 这个应该很好处理啊 首先创建两个 tableView 然后设置 frame,让一个在上面,一个在下面,这个你应该可以做到 然后就是 delegate 和 dataSource 的问题,两个都指向 self,那回调的时候如何区分 可以这样判断 if

Android程序开发之UIScrollerView里有两个tableView

一,效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewController <UIScrollViewDelegate,UITableViewDelegate,UITableViewDataSource> { UIScrollView *_scrolView; UITableView *_tableView; UITableView

安卓UI设计与开发教程 顶部标题栏(五)两种方式实现仿微信标题栏弹窗效果

博主在这篇文章中将会继续围绕顶部标题栏专题来进行实例讲解,今天要讲解的主题是分别使用 PopupWindow和Activity两种不同的方式来实现仿微信顶部标题栏弹窗的这样一个效果. 一.实现效果 图 这里为了演示方便,我将两种方法放在一个应用程序中演示,这个是主界面 开发教程 顶部标题栏(五)两种方式实现仿微信标题栏弹窗效果-js修改微信顶部标题栏"> 虽 然两种实现的方式不一样,但是最终的效果图都是差不多的

静态测试-Android两个下拉框静态联动

问题描述 Android两个下拉框静态联动 只需要静态联动,是一个选课的年级选择,一级下拉框是1-6年级上下册共12个选择,二级下拉框是第一单元到第十单元.我在做的时候,可以选择,但是选了第二个之后,第一个的数据会变动.本人是初学者菜鸟,求指教 解决方案 页面这样,然后服务器抛出空指针错误 解决方案二: 只能说代码写的不对,查查代码吧 解决方案三: 检查一下都有哪里可以对第一个下拉列表进行修改,考虑怎样会触发这段代码执行,必要情况下走一下断点. 解决方案四: 这种问题最好把你的代码贴出来

IOS TableView实现省市联动

之前用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 ViewCont

android布局里如何实现类似html文字链接效果,我现在有的是两个Button,比较丑,有凸起感

问题描述 android布局里如何实现类似html文字链接效果,我现在有的是两个Button,比较丑,有凸起感 类似支付宝的,管理手势密码和其它用户登录这样的效果,可以点击链接到其它页面. 解决方案 使用html文本,然后让TextView的属性加下划线. Spanned ss = Html.fromHtml(CommentText); setMovementMethod(LinkMovementMethod.getInstance()); 解决方案二: to forlong401:不需要下划线