-
问题:键盘挡住输入框
-
解决键盘挡住输入框
如何解决?简明扼要的四句代码如下:
UITableViewController *tableVC = [[UITableViewController alloc] initWithStyle:UITableViewStyleGrouped];
tableVC.view.frame = CGRectMake(0, self.topNavgationView.zb_height + autoScaleH(40),APP_SCREEN_WIDTH,self.view.zb_height - self.topNavgationView.zb_height - autoScaleH(40) - autoScaleH(54));
// 加上这句代码,就不会出现_tableView中的自定义的横线和UITableViewController中默认带的横线重合的情况了。
tableVC.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableVC.view.backgroundColor = [UIColor clearColor];// [UIColor redColor]
[self addChildViewController:tableVC];
_tableView = tableVC.tableView;