1、import与push
(只有VC才可以push)
代码如下:
//重置导航栏右上角的按钮,以覆盖系统统一的方案
- (void)classificationbutten{
self.navigationItem.rightBarButtonItem=[[UIBarButtonItem alloc]initWithTitle:@"分类"
style:UIBarButtonItemStyleDone target:self action:@selector(goProfile)];
}
- (void)goProfile{
Dlog(@"goSetting");
[self.tabBarController.navigationController
pushViewController:[classificationVC new] animated:YES];
}
