Resize a TableView of a TableViewController in Storyboard

ios, storyboard, tableview, uitableview, xcode

Solution

The tableview of UITableViewController is main view so we cannot adjust it in storyboard . If u want adjust size try this. In your UITableViewController .

- (void)viewDidAppear:(BOOL)animated
{
    [self.tableView setFrame:CGRectMake(x, y, width, height)];
}

It is `viewDidAppear` not `viewWillAppear`

Problem

I have a UITableviewController created with storyboard. Now i want to change the X and Y coordinates of the table view (specifically i want to put a little bit down the table view). There's an option in storyboard where i can set this parameter or change the tableview size? I can't find it I've tried looking in the size inspector but it looks like X and Y parameter are disabled.

Original source