1

我的应用程序中有一个 UIDatePicker,虽然我更改了在模拟器中选择的日期,但是当我 NSLog 时datePicker.date,它会输出当前日期而不是我选择的日期。

这是我的代码的摘录:(生成选择器的位置)

self.pickerView = [[UIDatePicker alloc] initWithFrame:pickerFrame];
//self.pickerView.frame = pickerFrame;

self.pickerView.datePickerMode = UIDatePickerModeDate;

actionSheet = [[UIActionSheet alloc] initWithTitle:nil 
                                                         delegate:nil
                                                cancelButtonTitle:nil
                                           destructiveButtonTitle:nil
                                                otherButtonTitles:nil];

[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];

[actionSheet addSubview:pickerView];

UISegmentedControl *closeButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObject:@"Done"]];
closeButton.momentary = YES; 
closeButton.frame = CGRectMake(260, 7.0f, 50.0f, 30.0f);
closeButton.segmentedControlStyle = UISegmentedControlStyleBar;
closeButton.tintColor = [UIColor blackColor];

[closeButton addTarget:self action:@selector(dismissActionSheet) forControlEvents:UIControlEventValueChanged];

[pickerView addTarget:self action:@selector(pickerChange) forControlEvents:UIControlEventValueChanged];

[actionSheet addSubview:closeButton];
[actionSheet setBounds:CGRectMake(0, 0, 320, 251)];

pickerView.maximumDate = [NSDate dateWithTimeIntervalSinceNow:315360000];
pickerView.minimumDate = [NSDate dateWithTimeIntervalSinceNow:-315360000];

然后在我的pickerChange函数中:

-(void)pickerChange{
    NSLog(@"DEBUG: Picker Value Changed");
    NSLog(@"%@",self.pickerView.date );
}

该 NSLog 的输出始终是当前日期,而不是在 UIDatePicker 中选择的日期。不知道为什么会这样,因为据我所知,该date属性应该显示选择的内容,而不是当前日期(或在用户更改值之前最初选择的内容)。

任何帮助,将不胜感激。(如果您需要更多信息,请给我留言)。谢谢!我敢肯定,这一定是我在匆忙中忽略了的东西。

4

2 回答 2

2

好的。我设法找到了答案 - 我将其发布,以便如果其他人有类似的问题,他们可以解决它。

我不得不修改 pickerChange 函数以包含发送者——但是人们会期望任何其他类型的对 datePicker 的引用都会产生相同的效果。下面是它现在的样子:

-(void)pickerChange:(UIDatePicker*) datePicker{
    myDate = datePicker.date;
}

似乎这是解决问题的唯一方法,而不是引用“pickerView”(在头文件中声明),您必须以这种方式引用发件人。

看看其他人是否遇到过此类问题(或类似问题)会很有趣。

于 2012-07-20T12:59:46.497 回答
0

如果您更改UIControlEventValueChanged为会发生什么UIControlEventEditingDidEnd

于 2012-07-20T08:15:45.170 回答