UIPickerView设置默认值

1.遍历数组,通过文字来找到位置

// 遍历数组,获取默认值

- (void)layoutSubviews {

[super layoutSubviews];

self.location.state = _stateKey;

self.location.city = _cityKey;

self.location.district = _zoneKey;

for (NSInteger i = 0; i < provinces.count; i++) {

if ([_stateKey containsString:[provinces[i] objectForKey:@"state"]]) {

[_locatePicker selectRow:i inComponent:0 animated:YES];

[_locatePicker reloadComponent:0];

[cities removeAllObjects];

cities = [[provinces objectAtIndex:i] objectForKey:@"cities"];

[self.locatePicker selectRow:0 inComponent:1 animated:YES];

[self.locatePicker reloadComponent:1];

for (NSInteger j = 0; j < cities.count; j++) {

if ([_cityKey containsString:[cities[j] objectForKey:@"city"]]) {

[_locatePicker selectRow:j inComponent:1 animated:YES];

[_locatePicker reloadComponent:1];

[areas removeAllObjects];

areas = [[cities objectAtIndex:j] objectForKey:@"areas"];

[self.locatePicker selectRow:0 inComponent:2 animated:YES];

[self.locatePicker reloadComponent:2];

for (NSInteger k = 0; k < areas.count; k++) {

if ([_zoneKey containsString:areas[k]]) {

[self.locatePicker selectRow:k inComponent:2 animated:YES];

[_locatePicker reloadComponent:2];

}

}

}

}

}

}

}

2.初始化时设置默认值

provinces = [[NSMutableArray alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"area.plist" ofType:nil]];

cities = [NSMutableArray arrayWithArray:[[provinces objectAtIndex:16] objectForKey:@"cities"]];

self.location.state = [[provinces objectAtIndex:16] objectForKey:@"state"];

self.location.city = [[cities objectAtIndex:0] objectForKey:@"city"];

areas = [NSMutableArray arrayWithArray:[[cities objectAtIndex:0] objectForKey:@"areas"]];

if (areas.count > 0) {

self.location.district = [areas objectAtIndex:7];

} else{

self.location.district = @"";

}

[_locatePicker selectRow:16 inComponent:0 animated:YES];

[_locatePicker selectRow:0 inComponent:1 animated:YES];

[_locatePicker selectRow:7 inComponent:2 animated:YES];

3.UIPickerView的点击时,也要设置相对应的省市区

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{

switch (component) {

case 0:

cities = [[provinces objectAtIndex:row] objectForKey:@"cities"];

[self.locatePicker selectRow:0 inComponent:1 animated:YES];

[self.locatePicker reloadComponent:1];

areas = [[cities objectAtIndex:0] objectForKey:@"areas"];

[self.locatePicker selectRow:0 inComponent:2 animated:YES];

[self.locatePicker reloadComponent:2];

_stateKey = [[provinces objectAtIndex:row] objectForKey:@"state"];

self.location.state = _stateKey;

_cityKey = [[cities objectAtIndex:0] objectForKey:@"city"];

self.location.city = _cityKey;

if ([areas count] > 0) {

self.location.district = [areas objectAtIndex:0];

} else{

self.location.district = @"";

}

break;

case 1:

areas = [[cities objectAtIndex:row] objectForKey:@"areas"];

[self.locatePicker selectRow:0 inComponent:2 animated:YES];

[self.locatePicker reloadComponent:2];

self.location.state = _stateKey;

_cityKey = [[cities objectAtIndex:row] objectForKey:@"city"];

self.location.city = _cityKey;

if ([areas count] > 0) {

self.location.district = [areas objectAtIndex:0];

} else{

self.location.district = @"";

}

break;

case 2:

if ([areas count] > 0) {

self.location.state = _stateKey;

self.location.city = _cityKey;

self.location.district = [areas objectAtIndex:row];

} else{

self.location.state = _stateKey;

self.location.city = _cityKey;

self.location.district = @"";

}

break;

default:

break;

}

}

4.设置传入的省市区的属性

@property (nonatomic, strong)NSString *stateKey;

@property (nonatomic, strong)NSString *cityKey;

@property (nonatomic, strong)NSString *zoneKey;

5.页面中创建PickerView

#pragma mark - private

- (void)createPickerView {

self.picker = [[AreaPickerView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT - 280, SCREEN_WIDTH, 280)];

_picker.delegate = self;

[self.view addSubview:_picker];

if (_address != nil) {

if (![_state isEqualToString:@""]) {

_picker.stateKey = _state;

_picker.cityKey = _city;

_picker.zoneKey = _district;

} else {

_picker.stateKey = _city;

_picker.cityKey = _district;

_picker.zoneKey = @"";

}

} else {

_picker.stateKey = @"辽宁省";

_picker.cityKey = @"大连市";

_picker.zoneKey = @"西岗区";

}

}

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

推荐阅读更多精彩内容

  • CIDetector 这个api是苹果在ios8之后提供的。所以用苹果自带的AVFundation扫描,如果从相册...
    然亦伞阅读 527评论 1 0
  • 不为明日思量,明日自有安排。 “当下,缺什么?”这是一个不需要大脑就能回答的强有力的问题,目的是让你将注意力集中在...
    vivien90阅读 337评论 0 0
  • 山东省淄博市博山区域城镇中心小学五(1)班的孩子们开始了《小艾多的世界》阅读。家长都比较忙,我和孩子们在学校共读。...
    博山区四十亩地小学李铭阅读 526评论 0 1
  • 我21岁,对自己充满了失望。超级喜欢熬夜,自制力极差,每次决定早睡都不会成功,做事情三天打鱼两天晒网。穷逼死宅还追...
    畅菇凉CC的小木屋阅读 174评论 0 0