//解决键盘遮盖输入框 CGRect frameVC = CGRectMake(0, 64, self.view.hm_width, self.view.hm_height-64); UITableViewController* tvc=[[UITableViewController alloc] initWithStyle:UITableViewStylePlain]; [self addChildViewController:tvc]; [tvc.view setFrame:frameVC]; _tableView=tvc.tableView; _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
[self.view addSubView:_tableView];