iphone - 最后一个 UITableViewCell 上的 UITableViewScrollPositionTop
<p><p>我很难尝试从我的表中创建最后一个 <code>UITableViewCell</code> 以到达 <code>UITableViewScrollPositionTop</code>。</p>
<p>我期望的行为是:</p>
<p>在 <code>didSelectTableAtindexPath:lastindex</code> 上,表格会将最后一个单元格一直带到顶部位置...我会做任何需要的事情,然后,我可以恢复定位(几乎就像我们在单元格内使用 textField 并且键盘启动时会发生什么)</p>
<p>有谁知道我们怎样才能得到这种行为?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>其实是我自己弄的...
如果有人遇到同样的问题,您应该这样做:
在使用 <code>scrollToRowAtIndexPath:atScrollPosition:animated:</code> 之前
使用:</p>
<pre><code>aTableView.contentInset = UIEdgeInsetsMake(aTableView.contentInset.top,
aTableView.contentInset.left,
aTableView.contentInset.bottom+300,
aTableView.contentInset.right);
</code></pre>
<p>做你必须做的,然后:</p>
<pre><code>aTableView.contentInset = UIEdgeInsetsMake(aTableView.contentInset.top,
aTableView.contentInset.left,
aTableView.contentInset.bottom-300,
aTableView.contentInset.right);
</code></pre>
<p>唯一的问题是从插图返回没有动画,但我想你可以设置一个动画来平滑过渡......</p></p>
<p style="font-size: 20px;">关于iphone - 最后一个 UITableViewCell 上的 UITableViewScrollPositionTop,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/5706535/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/5706535/
</a>
</p>
页:
[1]