-
問題:鍵盤擋住輸入框
-
解決鍵盤擋住輸入框
如何解決累魔?簡明扼要的四句代碼如下:
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));
// 加上這句代碼,就不會(huì)出現(xiàn)_tableView中的自定義的橫線和UITableViewController中默認(rèn)帶的橫線重合的情況了摔笤。
tableVC.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableVC.view.backgroundColor = [UIColor clearColor];// [UIColor redColor]
[self addChildViewController:tableVC];
_tableView = tableVC.tableView;