UIPickerView实例

+ ( id )cityPicker
{
   
return [[ NSBundle mainBundle ] loadNibNamed : @"MJCityPicker" owner : nil options : nil ][ 0 ];
}

#pragma mark 任何对象从 xib 中创建完毕的时候都会调用一次
- ( void )awakeFromNib
{
   
NSArray *array = [ NSArray arrayWithContentsOfFile :[[ NSBundle mainBundle ] pathForResource : @"cities.plist" ofType : nil ]];
   
   
_provinces = [ NSMutableArray array ];
   
for ( NSDictionary *dict in array) {
       
MJProvince *p = [ MJProvince provinceWithDict :dict];
        [
_provinces addObject :p];
    }
}

#pragma mark - UIPickerView 数据源方法
- ( NSInteger )numberOfComponentsInPickerView:( UIPickerView *)pickerView
{
   
return 2 ;
}

#pragma mark component 列有多少行数据
- ( NSInteger )pickerView:( UIPickerView *)pickerView numberOfRowsInComponent:( NSInteger )component
{
   
if (component == 0 ) { // 多少个省份
       
return _provinces . count ;
    }
else { // 当前选中省份的行数(城市个数)
       
// 1. 获得选中了哪一个省
       
int pIndex = [pickerView selectedRowInComponent : 0 ];
       
       
// 2. 取出省份模型
       
MJProvince *p = _provinces [pIndex];
       
       
// 3. 返回当前省份城市的个数
       
return p. cities . count ;
    }
}

#pragma mark - UIPickerView 代理方法
- ( NSString *)pickerView:( UIPickerView *)pickerView titleForRow:( NSInteger )row forComponent:( NSInteger )component
{
   
if (component == 0 ) { // 显示哪个省份
       
// 1. 取出省份模型
       
MJProvince *p = _provinces [row];
       
       
// 2. 取出省份名称
       
return p. name ;
    }
else { // 显示哪个城市
       
// 1. 获得选中了哪一个省
       
int pIndex = [pickerView selectedRowInComponent : 0 ];
       
       
// 2. 取出省份模型
       
MJProvince *p = _provinces [pIndex];
       
       
// 3. 返回对应行的城市名称
       
return p. cities [row];
    }
}

#pragma mark 监听选中了某一列的某一行
- ( void )pickerView:( UIPickerView *)pickerView didSelectRow:( NSInteger )row inComponent:( NSInteger )component
{
   
if (component == 0 ) { // 改变了省份
       
// 刷新第 1 列的数据 ( 重新刷新数据,重新调用数据源和代理的相应方法获得数据 )
        [pickerView
reloadComponent : 1 ];
       
       
// 选中第 1 列的第 0
        [pickerView
selectRow : 0 inComponent : 1 animated : YES ];
    }
   
   
// 更改文字
   
// 1. 获得选中的省份名称
   
int pIndex =  [pickerView selectedRowInComponent : 0 ];
   
MJProvince *p = _provinces [pIndex];
   
   
// 2. 获得选中的城市位置
   
int cIndex = [pickerView selectedRowInComponent : 1 ];
   
   
// 3. 通知代理
   
if ([ _delegate respondsToSelector : @selector (cityPicker:citySelectWithProvince:city:)]) {
        [
_delegate cityPicker : self citySelectWithProvince :p. name city :p. cities [cIndex]];
    }
}

#pragma mark  代理协议
@protocol MJCityPickerDelegate < NSObject >

@optional
- (
void )cityPicker:( MJCityPicker *)cityPicker citySelectWithProvince:( NSString *)province city:( NSString *)city;

@end

注意:
由于UIPickerView 继承自 UIView ,里面有数据源和代理,因此 UIPickerView 展示数据通过数据源,监听事件通过代理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值