我需要做一個橫向滾動我的表視圖,我搜索所有的谷歌和我沒有發現任何東西,我這樣做,怎麼辦水平滾動的tableview
CGRect tableFrame = CGRectMake(15, heightView-360, widthView+50, heightView-200);
UITableView *tableView = [[UITableView alloc]initWithFrame:tableFrame style:UITableViewStylePlain];
tableView.layer.cornerRadius=7;
tableView.rowHeight = 40;
tableView.sectionFooterHeight = myData.count;
tableView.sectionHeaderHeight = myData.count;
tableView.scrollEnabled = YES;
tableView.showsVerticalScrollIndicator = YES;
tableView.showsHorizontalScrollIndicator=YES;
tableView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
tableView.userInteractionEnabled = YES;
tableView.bounces = YES;
tableView.delegate = self;
tableView.dataSource = self;
[self.view addSubview:tableView];
什麼是錯的?爲什麼不去水平滾動?
的UITableView不在於設計了點。我建議你使用'UICollectionView'。如果tableView對於contentSize又是frame(frameSize),則顯示「水平滾動指示器」(horizontal scroll indicator)。 – Larme