ios - 选择器 'datePicker' 没有已知的类方法

标签 ios objective-c datepicker uitextfield uidatepicker

我在这里搜索过类似的问题来帮助我解决我的问题,但都是徒劳的。我希望UItextField在点击时拉起UIDatePicker,然后用户可以选择一个日期,然后在UITextfield中设置它。但是我不断收到“datePicker”的错误消息。不知道我还应该做什么。

这是我的应用程序调用 datePicker 的部分

-(void)textFieldDidBeginEditing:(UITextField *)textField
{
[pd resignFirstResponder]; //the textField that you will set the selected date
datePicker = [[UIDatePicker alloc] init]; //declared uidatepicker component

pickerViewDate = [[UIActionSheet alloc] initWithTitle:@"Select the date!"
                                             delegate:self
                                    cancelButtonTitle:nil
                               destructiveButtonTitle:nil
                                    otherButtonTitles:nil];

datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0.0, 44.0, 0.0, 0.0)];
datePicker.datePickerMode = UIDatePickerModeDate; //set your spesific mode

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
[dateFormatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]]; //or another LocaleIdentifier instead of en_US
[dateFormatter setDateFormat:@"dd.MM.yyyy"]; //desired format

[datePicker addTarget:self action:@selector(dateChanged) forControlEvents:UIControlEventValueChanged]; //the function would be fired when user change the date in datePicker

//now preparing the toolbar which will be displayed at the top of the datePicker
pickerToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
pickerToolbar.barStyle=UIBarStyleBlackOpaque;
[pickerToolbar sizeToFit];
NSMutableArray *barItems = [[NSMutableArray alloc] init];
UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneButtonClicked)]; //barbutton item is "DONE" and doneButtonClicked action will be fired when user clicks the button.
[barItems addObject:flexSpace]; // set the left of the bar

[pickerToolbar setItems:barItems animated:YES];
[pickerViewDate addSubview:pickerToolbar];
[pickerViewDate addSubview:datePicker];
[pickerViewDate showInView:self.view];
[pickerViewDate setBounds:CGRectMake(0,0,320, 464)]; //you can change the position
}

-(IBAction)dateChanged{

NSDateFormatter *FormatDate = [[NSDateFormatter alloc] init];
[FormatDate setLocale: [[NSLocale alloc]
                        initWithLocaleIdentifier:@"en_US"]];
[FormatDate setDateFormat:@"dd.MM.yyyy"];
pd.text = [FormatDate stringFromDate:[UIDatePicker datePicker]];
}

最佳答案

您将无法通过 Google 搜索代码中错误的原因。您需要弄明白,因为您的代码是独一无二的。

正如@madmik3 指出的,这一行是错误的:

pd.text = [FormatDate stringFromDate:[UIDatePicker datePicker]];

该代码试图调用 UIDatePicker 类方法“datePicker”,这没有任何意义。

您可能想要的是:

pd.text = [FormatDate stringFromDate: [datePicker date]];

代码在变量 datePicker 中询问您的日期选择器对象的日期属性(日期选择器中设置的当前日期。

关于ios - 选择器 'datePicker' 没有已知的类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32555784/

相关文章:

android - 如何在 Kotlin Android 的 DatePicker 中禁用 future 日期

jquery - 将 jQuery、jQuery UI 和 jQuery 主题与 Zend Framework 集成

ios - 测试 iOS 移动配置文件的命令行方式是否仍然有效?

ios - 在 Cocoapod 中集成 plcrashreporter?

iOS 错误架构 armv7 的 undefined symbol ?

objective-c - 没有iPhone应用程序的调试信息

iphone - initWithCoder 没有设置 UILabel 属性(UIFont 和文本颜色)

javascript - 如何重置 bsDatepicker 输入?

ios - Xcode 中的默认 SceneKit 应用程序如何处理双击?

iphone - 仅在 Superview 上禁用触摸事件?