我创建了一个自定义 UITableViewCell 并将其分配给一个自定义类。
自定义单元格中有两个标签和一个 uitextfield。一切都很好,但我需要能够使用日期选择器编辑文本字段。我似乎无法弄清楚如何使文本字段的输入视图成为日期选择器?我可以在常规单元格中做得很好,但找不到在我的自定义单元格中访问它的方法?
NSDate *eventDt= [gregorian dateByAddingComponents:offsetComponents toDate:[self trialDate] options:0];
// NSLog(@"EVENT DATE: %@", eventDt);
NSDateFormatter* dateF = [[NSDateFormatter alloc] init];
[dateF setDateFormat:@"MMMM dd, yyyy"];
[dateF setTimeZone:[NSTimeZone localTimeZone]];
NSString *eventDtforDisplay = [dateF stringFromDate:eventDt];
resultscell.labelEventDesc.numberOfLines=0;
[resultscell.labelEventDesc sizeToFit];
[resultscell.labelEventDate setText:[NSString stringWithFormat:@"%@",eventDtforDisplay]];
this is my problem----> [resultscell.textEventDate.inputView = [self datePicker];
[resultscell.textEventDate setText:[NSString stringWithFormat:@"%@",eventDtforDisplay]];
return resultscell;
}