我刚在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的子类
例如
答案 0 :(得分:0)
Choice-1
in TableviewConroller
on your indexpath (0) , set as your title
Choice -2
remove the tableviewController and add one UIViewController and embed with tableView and UIlabel
-- UIViewController
-- UIlabel
--UITableview