通过navigationController切换view的两种方式(转)

方法一右侧进入

 

BaseInfoEdit *View = [[BaseInfoEdit alloc] initWithNibName:@"BaseInfo" bundle:nil];

[self.navigationController pushViewController:View animated:YES];

返回方法

[self.navigationController popViewControllerAnimated:YES];

 


方法二下方进入

 

OilRecordAdd *View = [[OilRecordAdd alloc] initWithNibName:@"OilRecordDetail" bundle:nil];

[self.navigationController presentModalViewController:Nav animated:YES];

返回方法

[self.navigationController dismissModalViewControllerAnimated:YES];

posted @ 2011-12-15 11:09  郑文亮  阅读(728)  评论(0编辑  收藏  举报