4

我在视图中有一个日期选择器,但我只希望它显示日期和月份,而不是年份,有没有办法将年份取出?

4

5 回答 5

11

正如其他人指出的那样:您独自创建自己的选择器,但实际上这并不难。一个快速原型,请注意我使用第一个组件几天,第二个几年,这应该根据现实世界应用程序中的区域设置:

-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
    return 2;
}

-(NSInteger)pickerView:pickerView numberOfRowsInComponent:(NSInteger)component
{
    NSUInteger number = 0;
    if (component == 1) {
        number = 12;
    } else {

        NSDateComponents *comps = [[NSCalendar currentCalendar] components:NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit fromDate:[NSDate date]];

        NSUInteger month = [pickerView selectedRowInComponent:1]+1 ;
        NSUInteger actualYear = [comps year];

        NSDateComponents *selectMothComps = [[NSDateComponents alloc] init];
        selectMothComps.year = actualYear;
        selectMothComps.month = month;
        selectMothComps.day = 1;

        NSDateComponents *nextMothComps = [[NSDateComponents alloc] init];
        nextMothComps.year = actualYear;
        nextMothComps.month = month+1;
        nextMothComps.day = 1;

        NSDate *thisMonthDate = [[NSCalendar currentCalendar] dateFromComponents:selectMothComps];
        NSDate *nextMonthDate = [[NSCalendar currentCalendar] dateFromComponents:nextMothComps];

        NSDateComponents *differnce = [[NSCalendar currentCalendar]  components:NSDayCalendarUnit
                                                   fromDate:thisMonthDate
                                                     toDate:nextMonthDate
                                                    options:0];

        number = [differnce day];

    }

    return number;
}

-(void)pickerView:pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
    if (component == 1) {
        [pickerView reloadComponent:0];
    }
}

-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
    return [NSString stringWithFormat:@"%d", row+1];
}

您将在GitHub 上找到示例代码


您将在 GitHub 上找到的版本知道当月首选语言的名称

在此处输入图像描述

于 2012-11-01T02:28:06.587 回答
3

斯威夫特 3.0 版本:

@IBOutlet weak var pickerCell: UIPickerView!
var months: Array<String> = Calendar.current.monthSymbols

func config() {
    pickerCell.delegate = self
    pickerCell.dataSource = self
}

func numberOfComponents(in pickerView: UIPickerView) -> Int {
    return 2
}

func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
   var number = 0
    if component == 1 {
        return 12
    } else if pickerView.numberOfComponents > 1 {
        let comps = Calendar.current.dateComponents([.day,.month, .year], from: Date())

        let month: Int = pickerView.selectedRow(inComponent: 1)+1
        let year: Int = comps.year!
        var selectMothComps = DateComponents()
        selectMothComps.year = year
        selectMothComps.month = month
        selectMothComps.day = 1

        var nextMothComps = DateComponents()
        nextMothComps.year = year
        nextMothComps.month = month+1
        nextMothComps.day = 1

        let thisMonthDate = Calendar.current.date(from: selectMothComps)
        let nextMonthDate = Calendar.current.date(from: nextMothComps)

        var difference = Calendar.current.dateComponents([.day], from: thisMonthDate!, to: nextMonthDate!)
        number = difference.day!
    }
    return number
}

func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
    if component == 1 {
        pickerView.reloadComponent(0)
    }
}

func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
    if component == 0{
        return  String(format: "%d", row+1)
    } else {
        return months[row]
    }
}
//centers the views. width > than width of smallest component
func pickerView(_ pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat {
    if component == 0 {
        return 45
    }
    return 140
}
于 2017-11-10T22:02:26.640 回答
1

我在 GitHub 上找到了这个项目:PMEDatePicker

于 2014-01-17T19:57:42.750 回答
0

据我所知,UIDatePicker 无法做到这一点。您可以使用 UIPickerView 来执行此操作。

于 2012-11-01T01:07:32.193 回答
0

要扩展 Oscar 的答案,您确实必须使用 UIPickerView。

但是,这并不意味着您编码 365 天,您只需要:

  • 一个组件(轮子)损坏了 12 个项目(月)
  • 一个组件泄露了 31 个项目(天)

当一个项目被选中时,您将收到它对您的委托对象的索引。在这里,您只需要计算出该索引是什么项目。

对于本月,这可以使用键/值样式机制来实现;或简单地通过其值与组件/轮的值匹配的数组。记住无论如何您都需要一个数据源,您可以简单地在该数据源中查找它;很可能是一个数组。

至于当天,您将获得该项目的索引。由于您的项目(天)将从 1 开始,您只需从索引值中取 1 即可找到用户选择的实际日期。(带走 1 以补偿数组索引)

selectedRowInComponent 是您应该查看的方法以便更好地理解!

但是,将来当您担心必须创建大量相同的对象时,我建议您查看工厂模式,并进行某种形式的迭代来调用您的工厂方法。这与您的问题没有直接关系,但肯定与您上面的评论有关!

希望这可以帮助!

于 2012-11-01T01:29:34.990 回答