TableViewController嵌入NavigationController

龚镜
2023-12-01
NavigationController.h
申明NavigationController

@property (nonatomic,strong)UINavigationController *navgationController;


.m

初始化TableView

tableViewController *tableVC = [tableViewController alloc]init];

初始化navigation

self.navigationontroller = [UINavigationController alloc]initwithRootViewController:tableVC];

写入View

self.view addSuview:self.navigationController.view];

 类似资料: