我正在尝试在我的MyServiceTypeSelector()控制器上获得一个后退按钮,以便在我呈现MyServiceTypeSelector()后,我可以返回到BRPServiceSelector()控制器,我该怎么做?我是否需要使用导航控制器嵌入它?如果是这样,我不使用故事板,所以它需要以编程方式完成?
declare @t table (USR_START int not null,USR_END int not null)
insert into @t(USR_START,USR_END) values (6,4)
select * from @t usr
where EXISTS (
select * from (VALUES (1),(5),(9)) t(u) where usr.USR_START > u and usr.USR_END < u)
}
答案 0 :(得分:0)
如果您想在导航堆栈中使用VC,则将其推入堆栈而不是呈现它。呈现通常用于模态窗口,它们通常没有导航栏。
self.navigationController?.pushViewController(vc, animated: true)