请问怎么修改环信UI的导航栏
如题、
我直接push过去,但是聊天界面不是我的导航栏,是环信蓝色的,怎么变成我自己的导航栏??
ChatViewController *chat = [[ChatViewController alloc]initWithChatter:@"247751" isGroup:NO];
chat.title = _studentData.name;
[self.navigationController pushViewController:chat animated:YES];
我直接push过去,但是聊天界面不是我的导航栏,是环信蓝色的,怎么变成我自己的导航栏??
ChatViewController *chat = [[ChatViewController alloc]initWithChatter:@"247751" isGroup:NO];
chat.title = _studentData.name;
[self.navigationController pushViewController:chat animated:YES];
没有找到相关结果
已邀请:
4 个回复
shutup
[[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屌丝
LBTView - 90后iOS屌丝