目标C - iPhone应用程序
我有2个以编程方式实例化的UINavigationControllers
在控制器1中,我按下此视图
-(IBAction) showStartDateCalendar
{
ModalSetDateController *setStartDate = [[ModalSetDateController alloc] init];
[self.navigationController pushViewController: setStartDate animated:YES];
[setStartDate release];
};
为了推迟它,我打算做这样的事情:
-(IBAction) PopMyViewControllerBack;
{
[self.navigationController popViewControllerAnimated: YES];
}
但是我怎样才能在ModalSetDateController上获取datepicker的值 这是处理添加UIPickerview的最佳方法吗?我宁愿甚至没有UINavigationController这样做。 谢谢你的帮助!
答案 0 :(得分:0)
使用:
-(IBAction)popMyViewControllerBack:(id)sender
和sender将是ModalSetDateController的一个实例。