我想创建一个侧边菜单:
如何将其放入UITableViewController
?
问题是我在ViewController
(登录屏幕的那个)之前有另一个TableView
并且我不能使用SWRevealViewController
因为这个类假设它是我登录时第一个运行的Child
。
如何创建菜单?
答案 0 :(得分:0)
ViewController
的课程SWRevealViewController
ViewController
将是您的旁边菜单,使其成为自定义类。custom segue
到您的SWRevealViewController
HamburgerViewController
custom segue
将identifier
属性更改为sw_right
custom segue
创建另一个SWRevealViewController
到您的UITableViewController
custom segue
将identifier
属性更改为sw_front
ViewController
之前显示的UITableViewController
应segue
SWRevealViewController
而不是UITableViewController
直接执行public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseAnonymousId();
....
}
public class HomeController : Controller
{
public ViewResult Index()
{
string anonymousId = Request.Headers["AnonymousId"];
....
}
}
。您还可以在此处找到多个教程:https://github.com/John-Lluch/SWRevealViewController