A string in a UITableView does not scroll inside a UITableView. one solution is to use a UIScrollView and then add a UITableView inside. This UIScrollView will be the same size as your UITableView, but the UIScrollView contentSize property will be the same height, but it will be wider.

UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(x, x, x, x) style:...] [scrollView addSubview:tableView];
source share