注册

请问怎么修改环信UI的导航栏

如题、
 
我直接push过去,但是聊天界面不是我的导航栏,是环信蓝色的,怎么变成我自己的导航栏??
 
ChatViewController *chat = [[ChatViewController alloc]initWithChatter:@"247751" isGroup:NO];
chat.title = _studentData.name;
 [self.navigationController pushViewController:chat animated:YES];
已邀请:
//设置NavigationBar背景颜色

    [[UINavigationBar appearance] setBarTintColor:RGB(255, 140, 0)];

    //@{}代表Dictionary

    [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];

    [UINavigationBar appearance].translucent = NO;

    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
 
全局修改掉,我可能还对代码有做修改,你先试试

LBTView - 90后iOS屌丝

这个您就要改继承类了吧,环信继承的是自己的类

LBTView - 90后iOS屌丝

你用的是2.0的??还是3.0的??
 

LBTView - 90后iOS屌丝

你试试这个
 

要回复问题请先登录注册