UITableView滚动水平问题

时间:2015-03-25 16:34:36

标签: ios objective-c uitableview

这是我创建tableView的代码:

 _tableView = [[UITableView alloc] initWithFrame:CGRectMake(8, 0, self.view.frame.size.width - 16, self.view.frame.size.height - 8) style:UITableViewStylePlain];

        [_tableView registerNib:[UINib nibWithNibName:@"commentCell" bundle:nil] forCellReuseIdentifier:@"commentCell"];
        _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        _tableView.backgroundColor = [UIColor groupTableViewBackgroundColor];

        _tableView.dataSource = self;
        _tableView.delegate = self;

        [self.view addSubview:_tableView];

问题是我的桌子水平滚动我需要知道如何停用它,我试过弹跳=否;或contentSize但总是相同的问题我的表仍然允许水平滚动 enter image description here

1 个答案:

答案 0 :(得分:1)

问题是由我的viewDidAppear中的[tableView reload]函数引起的,它在完成显示allCell之前重新加载我的表,因此导致了不适当的行为