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 trying to set a my UITableView to a smaller height and have set the contentMode as well, however, I can't get it to scroll.. it just cuts down the size. What am I doing wrong?

 [self.tableView setContentSize:CGSizeMake(self.tableView.frame.size.width, 80)];
            [self.tableView setFrame:CGRectMake(self.tableView.frame.origin.x, self.tableView.frame.origin.y, self.tableView.frame.size.width, 250)];
            [self.tableView setScrollEnabled:YES];
share|improve this question

2 Answers

up vote 1 down vote accepted

Besides the fact that you seem to be trying to set the contentSize of a UITableView directly (which you shouldn't do) you are setting a content size of height 80 and a frame of height 250. And 80 < 250 so there's no need to scroll.

share|improve this answer

In nutshell, this will work

        [self.tableView setContentSize:CGSizeMake(self.tableView.frame.size.width, 251)];
        [self.tableView setFrame:CGRectMake(self.tableView.frame.origin.x, self.tableView.frame.origin.y, self.tableView.frame.size.width, 250)];
        [self.tableView setScrollEnabled:YES];
share|improve this answer

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.