问题:键盘挡住输入框
101.1750.gif
解决键盘挡住输入框
101.1751.gif
如何解决?简明扼要的四句代码如下:
UITableViewController*tableVC = [[UITableViewControlleralloc] 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 = [UIColorclearColor];// [UIColor redColor][selfaddChildViewController:tableVC];_tableView = tableVC.tableView;
将这六句代码写在创建tableview的懒加载方法中即可。
image.png
作者:CoderZb
链接:https://www.jianshu.com/p/0ccddb585193
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
网友评论