什么时候用Pust,什么时候用Modal? 一般情况下,是导航控制器点过去的,都使用Pust.如果是相对独立的,则用Modal,比如是导航上面的+添加之类. 关闭一个Modal -(IBAction)cancel:(id)sender { [self dismissViewControllerAnimated:YES completion:nil]; } segue传值 使用prepareForSegue方法进行跳转 在要传的页面,定义好Model @property (nonatomic, c…