UITableView滚动但不是预期的?

时间:2013-08-07 07:08:36

标签: ios uitableview scroll

我有一个tableview,里面有很多元素,当我向下滚动时,它不会停留在我离开滚动的位置,它再次到达顶部。

如何解决?

    tableView = [[UITableView alloc]init];
    tableView.frame = CGRectMake(0,66 ,320.0, 768.0);
    tableView.delegate = self;
    tableView.dataSource = self;

    [self addSubview:tableView];

我的行高是110

1 个答案:

答案 0 :(得分:0)

table的{​​{1}}尺寸大于table的可见区域。

tableView.frame = CGRectMake(0,66 ,320.0, 768.0); // here is the problem

将表格视图的更改高度更改为可见区域(例如,如果您的桌面在iPhone 5的整个屏幕中)

tableView.frame = CGRectMake(0,66 ,320.0, 548.0) // set according your need.