You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
I've added a UITabBarController. This tabBar will be on top of the message bar. How can i make this chatView smaller? so the message bar is not under the tabBar.
i've tried making it smaller by this code:
self.tableView.frame = CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height-50);
in the chatViewController.
Where and how can i make the JCMessageTableView smaller, so the messageBar is not hiding under the tabBar?
The text was updated successfully, but these errors were encountered:
I've decided not to support this, for a couple of reasons:
this is actually pretty difficult. i attempted this and it gets dirty pretty quickly. so i decided it was not worth the dev effort, especially (mostly) because of (2) below
i realized that this is really bad UI/UX. no other chat interfaces that i've seen show the tabbar. for example, FB messenger shows your chat list as the first tab in the tabbar controller. however, when you select a chat, the chat view pushes over and the tabbar is hidden. i think this is the proper way to do it. you shouldn't be showing this VC with a tabbar visible.
I've added a UITabBarController. This tabBar will be on top of the message bar. How can i make this chatView smaller? so the message bar is not under the tabBar.
i've tried making it smaller by this code:
self.tableView.frame = CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height-50);
in the chatViewController.
Where and how can i make the JCMessageTableView smaller, so the messageBar is not hiding under the tabBar?
The text was updated successfully, but these errors were encountered: