如何在侧边菜单中添加标题
Posted
技术标签:
【中文标题】如何在侧边菜单中添加标题【英文标题】:how to add title to side menu 【发布时间】:2016-03-02 10:44:31 【问题描述】:我刚刚在 ios 中使用库 SWRevealViewController
创建了一个侧边菜单。当我点击侧边菜单图标时,我想为我的侧边菜单设置标题。
我尝试了下面的代码,但它不起作用。
#import "MenuViewController.h"
#import "SWRevealViewController.h"
@interface MenuViewController ()
@end
@implementation MenuViewController
- (void)viewDidLoad
[super viewDidLoad];
// Do any additional setup after loading the view.
self.title = @"My test title";
这里的 MenuViewController 是 TableViewController 的子类
例如
【问题讨论】:
你检查你的 viewDidLoad 方法被调用了吗? 至少给你正在使用的第三方库的链接。通常,如果嵌入了导航控制器,self.title
将起作用。
不可能,我们需要定制。
@BadalShah -- 问题很简单,如何添加不嵌入navigationController的UItableviewController的标题
【参考方案1】:
选择 1
在TableviewConroller
on your indexpath (0) , set as your title
选择-2
remove the tableviewController and add one UIViewController and embed with tableView and UIlabel
-- UIViewController
-- UIlabel
--UITableview
【讨论】:
vishwas parashar - 我在 SWL 工作过 10 多个项目,在这里选择 no-2 可以帮助您,如果您需要与此相关的任何内容,我会支持您以上是关于如何在侧边菜单中添加标题的主要内容,如果未能解决你的问题,请参考以下文章