jsfu/JSDropDownMenu

iOS11下下拉控件顶部和底部空间多出来一截

Closed this issue · 1 comments

找到原因了,实现tableview的两个代理方法即可

  • (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    return [UIView new];
    }

  • (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return [UIView new];
    }