Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 553 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 553 Bytes

AreaPickViewController

地区选择器

Image

- (IBAction)buttonPressed:(UIButton *)sender {

    AreaPickerViewController *areaPicker = [AreaPickerViewController showAreaPicker:13 city:0 area:0];
    [areaPicker sureButtonPressedCallBack:^(AreaPickerViewController *areaPicker, AreaPickerModel *model) {
        _textLabel.text = [NSString stringWithFormat:@"%@ %@ %@",model.province,model.city,model.area];
        [areaPicker dismiss];
    }];
}