選擇日期和時間同時我準備一個日期選擇如下無法在IOS的UIDatePicker
dateView =[[UIView alloc]init];
dateView.frame=CGRectMake(0, 100, appDelegate.wVal, 400);
[contentView addSubview:dateView];
datePicker =[[UIDatePicker alloc]init];
datePicker.frame = CGRectMake(0, 100, appDelegate.wVal, 300);
[datePicker setDatePickerMode:UIDatePickerModeDate];
//[datePicker addTarget:self action:@selector(fillDate:) forControlEvents:UIControlEventValueChanged];
doneBtn =[[UIButton alloc]init];
doneBtn.frame= CGRectMake(0, datePicker.frame.origin.y+datePicker.frame.size.height+20, appDelegate.wVal, 50);
[doneBtn setTitle:@"Done" forState:UIControlStateNormal];
[doneBtn setTintColor:[UIColor blackColor]];
[doneBtn setBackgroundColor:[UIColor greenColor]];
[doneBtn addTarget:self action:@selector(doneAction) forControlEvents:UIControlEventTouchUpInside];
[dateView addSubview:datePicker];
[dateView addSubview:doneBtn];
我doneAction方法是行不通的。
在此先感謝。
這是什麼都與這個問題呢? – rmaddy
如果由於格式而出現問題,如果開發人員使用了「[dateFormatter setDateFormat:@」dd-MM-YYYY];「,則不會顯示時間 –
再次閱讀該問題。 。日期格式 – rmaddy