Tue 26/07/16
1) How to select the row for default in UITableView. First way in ViewDidLoad: //select first cell for default self.clearsSelectionOnViewWillAppear = NO; //if you use UITableViewController (delete if you use UIViewController NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:0]; [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone]; Second modern way: tableView . remembersLastFocusedIndexPath = Yes ; - ( NSIndexPath *) indexPathForPreferredFocusedViewInTableView :( UITableView *) tableView From here . 2) How to use scrollView without ContentView First of all select elements in .xib that you want to place at scrollView. Embed it in ScrollView from menu like at screen. Constrain ScrollView to UIView bounds. Constrain elements in ScrollView like you do it in regular UIView. (Maybe you have to use "Freeform" setting in Utiliti...