Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am experiencing a problem where in my UITableViewController, the last row is always cutoff by half.

If I have 20 rows, the 20th will be cut off; if I have 30, the 30th will be cut off.

I tried to resize the contentSize, and the frame of the UITableViewController, but it doesn't work.

Is there a way to resize the UITableViewController to the correct size?

Thanks in advance.

Some Code:

Initialize it in another class:

 settingsTable = [[SettingTableViewController alloc] init];
    settingsTable.view.frame = CGRectMake(0, 0, 320, 480);
    [self.view addSubview:settingsTable.view];

in the UITableViewController:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [settingsData count];
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return [[settingsData objectForKey:[NSString stringWithFormat:@"%d", section]] objectAtIndex:0];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[[settingsData objectForKey:[NSString stringWithFormat:@"%d", section]] objectAtIndex:1] intValue];
}

I didn't resize the frame anywhere in the UITableViewController

share|improve this question
You are probably setting the frame of the UITableView wrong in the firstplace. Providing some code would help:) – LuckyLuke Oct 6 '11 at 18:44
You said that you tried to resize the ViewController but still, could it be, that you used Interface Builder to place the view and, if so, did leave place eventual NavigationBars or TabBars? – Phlibbo Oct 6 '11 at 18:47
@Phlibbo It's not loaded from .xib file though.. – user959974 Oct 6 '11 at 18:51

2 Answers

up vote 5 down vote accepted

In the interface builder, select the UITableView and then under the View options remove the bottom autoresizing bar. You can leave all the others the way they are if they are different from the screenshots below. The important one is the bottom vertical bar.

Change this:

Before

To this:

After

Or, to do it programmatically:

settingsTable.autoresizingMask &= ~UIViewAutoresizingFlexibleBottomMargin;

Edit (from comments):

Is your status bar set to showing or hidden? If it is showing then change the frame line to:

settingsTable.view.frame = CGRectMake(0, 0, 320, 460);

Or, try either one of these and see if they help:

settingsTable.view.frame = self.view.bounds;
// or
settingsTable.view.frame = self.view.frame;
share|improve this answer
is there a way to do this in code? I didn't use interface builder.. – user959974 Oct 6 '11 at 18:52
1  
I changed the settingsTable.autoresizingMask &= ~UIViewAutoresizingFlexibleBottomMargin;, then the last row is gone entirely 0-0... When i change it to "UIViewAutoresizingFlexibleHeight", the last row is cut by about 1/5 .. – user959974 Oct 6 '11 at 19:08
Or, you could just do this: settingsTable.view.frame = self.view.bounds; or settingsTable.view.frame = self.view.frame; – chown Oct 6 '11 at 19:14

The problem is this line:

settingsTable.view.frame = CGRectMake(0, 0, 320, 480);

You are not accounting for the height of the status bar (20px in portrait orientation). The total available height is actually 460px not 480px. That is why you are losing 20px at the bottom. You should calculate frames for laying out subviews based on the parent view bounds rather than hardcoding them:

settingsTable.view.frame = self.view.bounds;
share|improve this answer
Thanks, that worked!! – user959974 Oct 6 '11 at 19:25

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.