1.UITableViewStyleGrouped分组高度过大问题:
_tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
2.UITableViewCell分割线调整:
_tabView.separatorInset = UIEdgeInsetsMake(0, 69, 0, 0);
_tabView.separatorColor = [UIColor bgColor];
2.滑动隐藏键:
_tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;
网友评论