UUChatTableView icon indicating copy to clipboard operation
UUChatTableView copied to clipboard

UITabBarController Issue

Open aytunch opened this issue 8 years ago • 1 comments

Hello all,

I like this project and it teached me alot, thanks:) One problem is that when there is a UITabBarController the UITextField does not show. Autolayout is broken. Even when I try to set the RootController.hidesBottomBarWhenPushed = YES, it shows the TabBar.

You can try it by changing the AppDelegate.m to the following to try:

RootViewController *root = [[RootViewController alloc]init];
root.hidesBottomBarWhenPushed = YES;
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:root];

UITabBarController * tbc = [[UITabBarController alloc] init];
tbc.viewControllers = @[nav];

self.window.rootViewController = tbc;

aytunch avatar Apr 19 '16 20:04 aytunch

Oh,It's my bad. please check the method of UUInputFunctionVie initWithSuperVC, this method include set the InputFunctionView of frame.

ZhipingYang avatar Apr 20 '16 09:04 ZhipingYang