0

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

如何解决?

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

    [self addSubview:tableView];

我的行高是 110

4

1 回答 1

0

您的table尺寸超过了 的可见区域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.
于 2013-08-07T07:30:48.257 回答