一种带索引城市选择器的设计

版本记录

版本号 时间
V1.0 2017.04.12

前言

很多时候我们都需要城市索引列表。做法有很多,下面我就说一下我做的一种按照第一个汉字字母排序的城市列表,看下面的gif图。

城市选择器

详细设计

先看一下文档组织结构。

Snip20170412_1.png

下面看详细代码

1. AppDelegate.m
#import "AppDelegate.h"
#import "JJCityListDisplayVC.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    JJCityListDisplayVC *cityListVC = [[JJCityListDisplayVC alloc] init];
    self.window.rootViewController = cityListVC;
    [self.window makeKeyAndVisible];
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {

}

@end

2. JJCityListDisplayVC.m
#import "JJCityListDisplayVC.h"
#import "JJCityListDisplayView.h"

@interface JJCityListDisplayVC ()

@end

@implementation JJCityListDisplayVC

- (void)viewDidLoad {
    [super viewDidLoad];
    
    JJCityListDisplayView *cityDisplayView = [[JJCityListDisplayView alloc] initWithFrame:self.view.frame];
    [self.view addSubview:cityDisplayView];
}

@end

3. JJCityListDisplayView.m
#import "JJCityListDisplayView.h"

static NSString *cellReuseIdentify = @"cellReuseIdentify";

@interface JJCityListDisplayView () <UITableViewDelegate, UITableViewDataSource>

@property (nonatomic, strong) NSDictionary *cityListDict;
@property (nonatomic, strong) NSArray *keyArr;
@property (nonatomic, strong) UITableView *cityTableView;

@end

@implementation JJCityListDisplayView

#pragma mark - Override Base Function

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self loadCityData];
        [self setupUI];
    }
    return self;
}

- (void)layoutSubviews
{
    self.cityTableView.frame = self.frame;
}

#pragma mark - Object Private Function

- (void)loadCityData
{
    NSURL *cityPlistURL = [[NSBundle mainBundle] URLForResource:@"cityList.plist" withExtension:nil];
    self.cityListDict = [NSDictionary dictionaryWithContentsOfURL:cityPlistURL];
}

- (void)setupUI
{
    self.cityTableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
    [self.cityTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellReuseIdentify];
    self.cityTableView.delegate = self;
    self.cityTableView.dataSource = self;
    [self addSubview:self.cityTableView];
    
    self.keyArr = self.cityListDict.allKeys;
    self.keyArr = [self.keyArr sortedArrayUsingSelector:@selector(compare:)];
}

#pragma mark - UITableViewDelegate & UITableViewDataSource

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.keyArr.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.cityListDict[self.keyArr[section]] count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellReuseIdentify forIndexPath:indexPath];
    
    NSString *key = self.keyArr[indexPath.section];
    NSArray *cityArr = self.cityListDict[key];
    cell.textLabel.text = cityArr[indexPath.row];
    
    return cell;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    if (section == 0 || section == self.keyArr.count - 1) {
        return nil;
    }
    else {
        return self.keyArr[section];
    }
}

- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    NSMutableArray *arrM = [NSMutableArray arrayWithArray:self.keyArr];
    [arrM exchangeObjectAtIndex:0 withObjectAtIndex:self.keyArr.count - 1];
    return arrM.copy;
}

@end

结果就不多说了,所有的效果gif图上都已经展现了。

后记

这次写的比较简单,就是一个小玩意,是最近太忙了,写复杂的东西时间有点不够了,最近我也正在翻译别的语言。还是那句话,多谢大家的支持吧。谢谢。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容

  • 阿中,青春正当时,但请你足够相信。今天的中国已经不是那个落后就要挨打的国家,他在慢慢的发展,慢慢变强。经过70年的...
    看了你柴知道阅读 290评论 0 0
  • 突然就想到这句话了。 其实也没有多突然,只是下午看了一个电视剧,冰糖炖雪梨,不知道大家看过没有。 里面有一个场景是...
    憋说话呀阅读 188评论 0 1
  • 爱运动的人不断翻新花样,不仅自己锻炼,还要组织团队,大家对赌,模仿007. 还要天天一小时,做不到罚,一年后看看变...
    Jeson杰森阅读 225评论 0 2
  • 第一章:小地狱主 鬼门关是什么样子呢?陈仙儿一直以为,鬼门关应该是那种,一扇古代的那种带凸起的大门,特别特别高的那...
    王猫猫有只狗阅读 710评论 0 6