アプリに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
プロパティには、現在の日付(またはユーザーが値を変更する前に最初に選択されたもの)ではなく、選択されたものが表示されるはずです。
どんな助けでもいただければ幸いです。(さらに情報が必要な場合は私にメッセージを送ってください)。ありがとう!急いでいるうちに見落としていたものに違いないと思います。