ios - 当部分没有行时确定 UITableView 的可见部分
<p><p>我正在尝试确定哪些部分当前在我的 UITableView 中可见。但是,有时我的部分没有行,只显示它们的部分标题。有没有办法确定,也许通过使用节标题,当前正在显示我的 UITableView 中的哪些节?询问 -(NSArray *)indexPathsForVisibleRows 无法确定该部分,因为没有实际可见的行,只有部分标题。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我能想到的最好办法是使用 contentOffset 和 frame.size 来计算可见矩形并遍历调用 <code>rectForSection:</code> 的每个部分并查看哪些部分相交。像这样的东西:</p>
<pre><code>-(NSIndexSet*)visibleSections
{
NSMutableIndexSet*indexSet = ;
CGRect visible = self.tableView.bounds;
for(NSInteger section = 0 ; section < )
{
CGRect sectBounds = ;
if(CGRectIntersectsRect(sectBounds, visible))
{
;
}
}
return indexSet;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 当部分没有行时确定 UITableView 的可见部分,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/22872042/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/22872042/
</a>
</p>
页:
[1]