我可以将整数值传递给另一个类,但是日期呢?我正在使用以下代码传递整数:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"toStep2"]) {
Step2ViewController *detailViewController = [segue destinationViewController];
NSLog(@"text : %@",self.wrp.text);
//This is the id infoRequest, which is a pointer to the object
//Look at the viewDidLoad in the Destination implementation.
detailViewController.infoRequest = self.wrp.text;
}
}
我的问题是用户在我的 Step1 类中输入了带有 UIDatePicker 的日期,但是如何将日期传递给 Step2 类?任何帮助,将不胜感激。