Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I set up the tableview say with 4 rows, there are still extra separators lines below the tableview (or extra blank cells)

How would I remove these cells (like in this case I just need 4 top cells)

    tblView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];
[tblView setDelegate:self];
[tblView setDataSource:self];
[tblView setSeparatorStyle: UITableViewCellSeparatorStyleSingleLine];

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 4;}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

int row = [indexPath row];

return cell;}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {}
share|improve this question

7 Answers

up vote 81 down vote accepted

This was tested on iOS 6.1 but should work fine on previous versions too. Add this to your TableViewController (this will work for any number of sections):

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
     // This will create a "invisible" footer
     return 0.01f;
 }

If it is not enough, add the following code too:

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

    // If you are not using ARC:
    // return [[UIView new] autorelease];
}
share|improve this answer
This seemed the cleanest solution to me and is the one I've used, gets my vote! – HaggleLad May 27 '11 at 10:48
This should be the accepted answer :) – banDedo Feb 21 '12 at 1:45
love this! thanks! – henghonglee Feb 21 '12 at 3:30
Thank you very much! – ArtSabintsev Mar 27 '12 at 4:26
1  
It should be CGFloat not float for the return type of tableView:heightForFooterInSection – zurbergram Mar 27 at 19:23
show 6 more comments

Here's another way to do that w/out the grouped table style, and one you'd probably not guess. Adding a header and footer to the table (perhaps one or the other suffices, haven't checked) causes the separators to disappear from the filler/blank rows.

I stumbled onto this because I wanted a little space at the top and bottom of tables to decrease the risk of hitting buttons instead of a table cell with meaty fingers. Here's a method to stick a blank view in as header and footer. Use whatever height you like, you still eliminate the extra separator lines.

- (void) addHeaderAndFooter
{
 UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 10)];
 v.backgroundColor = [UIColor clearColor];
 [self.myTableView setTableHeaderView:v];
 [self.myTableView setTableFooterView:v];
 [v release];
}

In response to @Casebash, I went back to the code in my app ("AcmeLists" List Manager in iTunes store...) and short-circuited the addHeaderAndFooter method to verify. Without it, I have the extra row separators; with the code, I have what you see in this window snap: no table row separators picture. So I'm not sure why it wouldn't have worked for you. Moreover, it makes sense to me that having any custom footer on a table view would necessarily have to stop drawing row separators for blank rows below it. That would be hideous. For reference, I looked at tables where there were more rows than could be viewed on screen, and then for a table with two rows. In both cases, no extraneous separators.

Perhaps your custom views were not actually added. To check that, set the background color to something other than clearColor, e.g., [UIColor redColor]. If you don't see some red bars at the bottom of the table, your footer wasn't set.

share|improve this answer
Works great for me! Thanks for the tip, I didn't think of that solution, even though it makes perfect sense that this should work. – Mirko Froehlich Feb 27 '10 at 1:10
3  
+1: Works great now. Setting the header view seems to be unnecessary and in my opinion makes it look worse – Casebash Mar 23 '10 at 1:00
Right. I doubt the header view would matter for the lines below. I merely copy/pasted the method I used where I DID want some extra space above the table. I didn't think to point out that only the footer was relevant. – wkw Mar 24 '10 at 14:30
1  
You can do this in IB, too. Just drag a UIView at the bottom of the TableView and set the height to 1. – Ortwin Gentz Jun 23 '11 at 15:15
2  
This also works as a one liner with a zero rect ... [self.tableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]]; (Tested on iOS5 with ARC) – pchap10k Jul 9 '12 at 3:37
show 1 more comment

I would like to extend wkw answer:

Simply adding only footer with height 0 will do the trick. (tested on sdk 4.2, 4.4.1)

- (void) addFooter
{
    UIView *v = [[UIView alloc] initWithFrame:CGRectZero];

    [self.myTableView setTableFooterView:v];

    [v release];
}

or even simpler - where you set up your tableview, add this line:

//change height value if extra space is needed at the bottom.
[_tableView setTableFooterView:[[[UIView alloc] initWithFrame:CGRectMake(0,0,0,0)] autorelease]];

Thanks to wkw again :)

share|improve this answer

I was using a table view to show a fixed number of columns, so I simply resized it and made it non-scrollable.

share|improve this answer

Try this. It worked for me:

- (void) viewDidLoad
{
  [super viewDidLoad];

  self.tableView.tableFooterView = [[[UIView alloc] init] autorelease];
}
share|improve this answer

Just add an view with the desired separator color as background color, 100% width, 1px height at the position x0 y-1 to your tableViewCell. Make sure the tableViewCell doesn't clip subviews, instead the tableView should.

So you get a absolut simple and working separator only between existing cells without any hack per code or IB.

Note: On a vertical top bounce the 1st separator shows up, but that shouldn't be a problem cause it's the default iOS behavior.

share|improve this answer

You could pass UITableViewStyleGrouped as the style of the UITableView when you call initWithFrame. Each section of the table will then display a distinct group of cells.

The first line of your example code would change to:

tblView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] 
                                             style:UITableViewStyleGrouped];
share|improve this answer
thanks man, it works! – SimpleCode Sep 4 '09 at 17:16
1  
But then you get margins that does not seem to be adjustable – Ben Dec 10 '12 at 14:27
you get margins and separators have gone not a good answer – Jatin Jan 25 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.