我想要一些剩余的空间,10 像素,到UITablViewcCell
. 我在下面写代码,但它的内容是水平滚动的。我不想要那个。
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0.0, 0.0, 130.0, 768.0)];
self.horizontalTableView.contentInset = UIEdgeInsetsMake(0.0, 10.0, 0.0, 0.0);
我需要使用contentOffset
contentSize
tableview的属性吗?