标签: ios iphone uitableview
我有一个tableview,其中包含每个部分中的部分和动态行数。我想通过更改内容偏移量使我的UITableView的特定部分显示在顶部。我正在使用下面的代码来尝试实现这个目标:
UITableView
[table setContentOffset:CGPointMake(0, (([array count]-anIndex)*cell.height)) animated:NO]; [table reloadData];
(这是-viewWillAppear:。)
-viewWillAppear:
但它无法正常工作。有人可以帮我吗?