菜鸟教程小白 发表于 2022-12-13 02:44:14

ios - UITableView - 自定义未使用的单元格


                                            <p><p>例如,如果我的表格 View 高度为 480,并且由于某种原因我最终只有 2 或 3 个单元格,那么下面的其余部分将显示为典型的白色并带有浅灰色分隔线。如何用自定义图像填充那些未使用的单元格?我知道我可以更改表格的背景颜色,但实际上我想用图像填充每个未使用的单元格。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你需要完全按照你说的去做:用图像填充每个未使用的单元格。</p>

<p>基本上你需要做你的逻辑</p>

<pre><code>- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
</code></pre>

<p>计算您需要多少“假细胞”,然后将它们返回</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITableView - 自定义未使用的单元格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16840528/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16840528/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITableView - 自定义未使用的单元格