美文网首页
iOS tableview上添加的textfield、textv

iOS tableview上添加的textfield、textv

作者: 炸街程序猿 | 来源:发表于2019-03-19 09:26 被阅读0次

    问题:键盘挡住输入框

    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

    来源:简书

    简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

    相关文章

      网友评论

          本文标题:iOS tableview上添加的textfield、textv

          本文链接:https://www.haomeiwen.com/subject/mqvwmqtx.html