Explorar el Código

iOS: Add footer to tableview to remove extra separator lines

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
Soomin Lee hace 8 años
padre
commit
8b3547aff3
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Sources/VLCLibraryViewController.m

+ 1 - 0
Sources/VLCLibraryViewController.m

@@ -130,6 +130,7 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
             _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
             _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
             _tableView.tableHeaderView = _searchBar;
+            _tableView.tableFooterView = [UIView new];
         }
         _tableView.frame = contentView.bounds;
         [contentView addSubview:_tableView];