我在导航上推送了一个视图。现在我点击按钮进行跟踪。
[self.navigationController popViewControllerAnimated:YES];
FreeStuffViewController * freeStuffVC=[[FreeStuffViewController alloc]initWithNibName:@"FreeStuffViewController" bundle:nil];
[self.navigationController pushViewController:freeStuffVC animated:YES];
[freeStuffVC release];
它只弹出一个视图,但力推新的 FreeStuffVc。请帮忙。