我可以將整數值傳遞給另一個類,但日期呢?我使用下面的代碼傳遞整數:如何將日期值傳遞給另一個類
-(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;
}
}
我的問題是用戶輸入的,在我的第一步類的UIDatePicker一個日期,但如何日期被傳遞到第二步類?任何幫助,將不勝感激。
我做到了,但現在我得到一個錯誤:「不兼容的指針類型分配給‘的NSDate * _strong’從‘的NSString *’」 – 2013-02-19 05:13:24
好吧, Eric,祝你好運%) – 2013-02-19 05:24:48