我想要一些左側空間,10像素到UITablViewcCell
。我在下面編寫代碼,但它的水平滾動內容。我不想那樣。UITableView ContentInsets水平滾動內容
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);
我是否需要使用的tableview的contentOffset
contentSize
財產。
嘗試更改框架的x位置,從0到10 .... – 2013-02-19 07:27:47