UI 09 tableView 中国省市区. 一个页面, 三个tableView

感觉省市区要被玩坏了……….

#import "MainViewController.h"
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height

@interface MainViewController ()<UITableViewDataSource, UITableViewDelegate>
@property (nonatomic,retain)NSMutableArray *proArr;
@property(nonatomic, retain)UITableView *proTableView;
@property(nonatomic, retain)UITableView *cityTableView;
@property(nonatomic, retain)UITableView *zoneTableView;
@property(nonatomic, retain)NSMutableArray *cityarr;
@property(nonatomic, retain)NSMutableArray *zonearr;

@end

@implementation MainViewController
- (void)dealloc{
    [_proArr release];
    [_proTableView release];
    [_cityTableView release];
    [_zoneTableView release];
    [_cityarr release];
    [_zonearr release];
    [super dealloc];
}
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        [self creat];
    }
    return  self;
}

- (void)creat{
    NSString *path = @"/Users/dllo/Desktop/UI 学习/UI09 _ 多种TableView/UI09 _ 多种TableView/area.txt";
    NSString *str = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
    NSArray *strArr = [str componentsSeparatedByString:@"\n"];
    self.proArr = [NSMutableArray array];
    for (NSString *temp in strArr) {
        if (![temp hasPrefix:@" "]) {
            NSMutableDictionary *prodic = [NSMutableDictionary dictionary];
            [prodic setObject:temp forKey:@"proname"];
            NSMutableArray *cityarr = [NSMutableArray array];
            [prodic setObject:cityarr forKey:@"cityarr"];

            [self.proArr addObject:prodic];
        }else if ([temp hasPrefix:@"  "]&&![temp hasPrefix:@"    "]){
            NSMutableDictionary *citydic = [NSMutableDictionary dictionary];
            [citydic setObject:temp forKey:@"cityname"];
            NSMutableArray *zonearr = [NSMutableArray array];
            [citydic setObject:zonearr forKey:@"zonearr"];

            NSMutableDictionary *prodic = [self.proArr lastObject];
           NSMutableArray *cityarr = prodic[@"cityarr"];
            [cityarr addObject:citydic];
        }else{
            NSMutableDictionary *prodic = [self.proArr lastObject];
            NSMutableArray *cityarr = prodic[@"cityarr"];
            NSMutableDictionary *citydic  = [cityarr lastObject];
            NSMutableArray *zonearr = citydic[@"zonearr"];
            [zonearr addObject:temp];
        }
    }

}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    // 如果设置成不透明,navigation就有毛玻璃的效果.
    //automaticallyAdjustsScrollViewInsets 这条属性的作用是:当只有一个TableView时,会将tableView的坐标原点从(0,64)开始,但有多个时,将不管其他tableView,就会造成tableView不对其的情况发生.解决方法,1.把半透明改成不透明2.还可以将这条属性关闭,即所有的tableView都从(0,0)开始.再将纵坐标+64即可.这样nagation就有毛玻璃效果了.
    self.automaticallyAdjustsScrollViewInsets = NO;

    self.navigationController.navigationBar.translucent = NO;

    self.proTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WIDTH/3, HEIGHT - 64) style:UITableViewStylePlain];
    self.proTableView.backgroundColor =[UIColor orangeColor];
    [self.view addSubview:self.proTableView];
    [_proTableView release];

    self.cityTableView = [[UITableView alloc] initWithFrame:CGRectMake(WIDTH/3, 0, WIDTH/3, HEIGHT - 64) style:UITableViewStylePlain];

    // cell的横线
    self.cityTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    self.cityTableView.backgroundColor = [UIColor cyanColor];
    [self.view addSubview:self.cityTableView];
    [_cityTableView release];

    self.zoneTableView = [[UITableView alloc] initWithFrame:CGRectMake(WIDTH/3*2, 0, WIDTH/3, HEIGHT - 64) style:UITableViewStylePlain];
    self.zoneTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    self.zoneTableView.backgroundColor = [UIColor redColor];
    [self.view addSubview:self.zoneTableView];
    [_zoneTableView release];
//
    self.proTableView.delegate = self;
    self.cityTableView.delegate = self;
    self.zoneTableView.delegate = self;

    self.proTableView.dataSource = self;
    self.cityTableView.dataSource = self;
    self.zoneTableView.dataSource = self;

}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if (tableView == self.proTableView) {
        return self.proArr.count;
    }else if(tableView == self.cityTableView){
        return self.cityarr.count;
    }else{
        return self.zonearr.count;
    }
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    if (tableView == self.proTableView) {
        static NSString *proreuse = @"proreuse";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:proreuse];
        if (!cell) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:proreuse] autorelease];
        }
        NSMutableDictionary *prodic = self.proArr[indexPath.row];
         cell.textLabel.text = prodic[@"proname"];
        cell.textLabel.font = [UIFont systemFontOfSize:18];

        return cell;
    }else if (tableView == self.cityTableView){
        static NSString *cityreuse = @"reuse";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cityreuse] ;
        if (!cell) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cityreuse] autorelease];
        }
        NSMutableDictionary *citydic = self.cityarr[indexPath.row];

        cell.textLabel.text = citydic[@"cityname"];
        cell.textLabel.font = [UIFont systemFontOfSize:16];
        return cell;
    }else{
        static NSString *zonereuse = @"reuse";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:zonereuse] ;
        if (!cell) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:zonereuse] autorelease];
        }
        cell.textLabel.text = self.zonearr[indexPath.row];
        cell.textLabel.font = [UIFont systemFontOfSize:14];
        return cell;
    }

}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    // 先判断当前是哪一个tableView被点击
    if (tableView == self.proTableView) {
        // 先找到当前点击的是哪一个省
        self.cityarr = self.proArr[indexPath.row][@"cityarr"];
        //对市的tableView进行reloadData
        [self.cityTableView reloadData];
        self.zonearr = [NSMutableArray array];
        [self.zoneTableView reloadData];
    }else if (tableView == self.cityTableView){
        self.zonearr = self.cityarr[indexPath.row][@"zonearr"];
        [self.zoneTableView reloadData];
    }
}

效果图如下:

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-06 14:51:32

UI 09 tableView 中国省市区. 一个页面, 三个tableView的相关文章

UI 08 tableView版中国省市区 -- 3页

还记得之前写的中国省市区么? 现在我们使用tableView将他显示出来. 里面用到了从前向后属性传值. 第一页效果图如下, 一共31个省 #import "ProViewController.h" #import "CityViewController.h" @interface ProViewController ()<UITableViewDataSource,UITableViewDelegate> @property(nonatomic, re

iOS中一个页面显示两个tableview的情况

一个页面显示两个tableview,并且每个tableview上的数据都不一样,一般用以下方法: 首先建一个继承自UIView的类,来表示用来切换tableview的view //在view的类的.h文件中 #import <UIKit/UIKit.h> @protocol MyAttentionHeadViewDelegate <NSObject> //建一个叫MyAttentionHeadViewDelegate的一个代理 @optional //两个代理方法(可选择实现opt

中国省市区地址三级联动jQuery插件 案例下载

中国省市区地址三级联动jQuery插件 案例下载 distpicker 是一款可以实现中国省市区地址三级联动jQuery插件.它使用简单,简单设置即可完成中国省市区地址联动效果. 安装 可以通过npm或bower来安装该三级联动插件. npm install distpicker bower install distpicker 使用方法 HTML结构 基本的HTML结构是使用一个<div>容器来包裹一组<select>元素. <div><!-- containe

iOS开发技术之实现tableView左滑删除的三种操作方式

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "PingFang SC"; color: #000000; background-color: rgba(0, 0, 0, 0) } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "PingFang SC"; color: #000000; background-color: rgba(0, 0, 0

iOS开发UI篇—事件处理(完成一个简单的涂鸦板)

iOS开发UI篇-事件处理(实现一个简单的涂鸦板) 一.说明 该程序使用事件处理机制和绘图完成了一个简单的涂鸦板应用,使用鼠标在涂鸦板内拖动即可进行涂鸦,点击保存到相册按钮,可以把完成的涂鸦保存到手机的相册中,点击回退按钮可以向后退回一步,点击清空可以让涂鸦板清空. 文件结构和界面搭建: 二.代码示例 YYViewController.m文件 1 // 2 // YYViewController.m 3 // 02-画板程序 4 // 5 // Created by apple on 14-6-

PHP 页面跳转到另一个页面的多种方法方法总结

如何在PHP中从一个页面重定向到另外一个页面呢?这里列出了三种办法,供参考. 一.用HTTP头信息 也就是用PHP的HEADER函数.PHP里的HEADER函数的作用就是向浏览器发出由HTTP协议规定的本来应该通过WEB服务器的控制指令,例如声明返回信息的类型("Context-type: xxx/xxx"),页面的属性("No cache", "Expire")等等. 用HTTP头信息重定向到另外一个页面的方法如下: 复制代码 代码如下: &l

html中,如何打开index.html后可以自动打开另一个页面?

[1.最基本的弹出窗口代码]    其实代码非常简单:    <SCRIPT LANGUAGE="javascript">  <!--  window.open ('page.html')  -->  </SCRIPT>    因为这是一段javascripts代码,所以它们应该放在<SCRIPT LANGUAGE="javascript">之间.<!--  和 -->是对一些版本低的浏览器起作用,在这些老

点击超链接,将页面中某个数据传到另一个页面

<input type="text" name="name"> <input type="text" name="age"> <a href="javascript:location.href='test.html?name='+document.getElementsByTagName('input')[0].value+'&age='+document.getElements

从一个页面请求开始(一)

在本地浏览器上输入www.hello.com时,简单的实现流程是:在客户端上,检查本地的hosts文件中是否有主机名和ip对应,有对应ip,则用HTTP协议封装数据请求,添加应用层首部,添加tcp首部,添加ip首部,添加mac地址后从本地出去,到对应的WEB服务器上,没有对应的ip,则查找resolv.conf文件上DNS的位置,DNS不在同一网络内,则请求需要通过网关做转发,通过路由器来寻找到对应DNS的位置,此处可能经过多个DNS解析,直到DNS找到后,将FQDN解析为一个互联网上的ip,再