react-native-tableview icon indicating copy to clipboard operation
react-native-tableview copied to clipboard

Show the extra separators below UITableView

Open davidperrenoud opened this issue 8 years ago • 0 comments

By default on iOS, UITableView shows extra separators in the empty place below the cells:

Extra separators

As RNTableView is always initialising tableFooterView, these separators aren't shown. Could we initialise the footer only when we actually need?

At the moment, you can disable the footer by commenting this line:

_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

And this line:

_tableView.tableFooterView = view;

davidperrenoud avatar May 01 '17 14:05 davidperrenoud