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

ios - TableView滚动时如何避免UITableViewCell重复添加自定义标签?


                                            <p><p>我创建了一个自定义单元:</p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;
#import &#34;RecruitmentResumeEntity.h&#34;

@interface RecruimentListItemCell : UITableViewCell
@property (nonatomic, strong) RecruitmentResumeEntity *entity;
@end
</code></pre>

<p>在 .m 文件中设置实体方法时,我添加了三个标签:</p>

<pre><code>-(void)setEntity:(RecruitmentResumeEntity *)entity {

   _entity = entity;

   float labelHeight = 17;

   CGRect frame = CGRectMake(64, 45, 0, labelHeight);
   UILabel *cityLabel = ;
   ;

   UILabel *workExperienceLabel = backgroundColor:@&#34;#81A0D7&#34;];
   ;

   UILabel *expectSalaryLabel = ;
   ;
}
</code></pre>

<p>在 ControllercellForRowAtIndexPath 方法中获取自定义单元格并设置实体。但是当我运行应用程序,滚动 UITableView 时,我发现单元格重复创建了三个标签,我只希望每个单元格只有三个标签。我是不是弄错了什么或遗漏了什么。谁能帮助我?等待你的帮助。谢谢。
<a href="/image/IAPxx.png" rel="noreferrer noopener nofollow"><img src="/image/IAPxx.png" alt="enter image description here"/></a> </p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

   RecruitmentResumeEntity *entity = _dataList;
   RecruimentListItemCell *cell = ;
   cell.entity = entity;

   return cell;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这似乎是您没有正确重新使用单元格的问题。</p>

<p>当你调用 <code>RecruimentListItemCell *cell = ;</code> 系统会给你一个它认为可以重复使用的单元格来显示下一个信息需要显示的单元格,但在重复使用之前正确准备此单元格是您的责任。</p>

<p>为此,您必须在 <code>RecruimentListItemCell</code> 中实现 <code>-(void)prepareForReuse</code>,在那里您必须确保所有需要重新填充的项目正确重置单元格,以便可以正确重新填充单元格。 </p>

<p>例如,如果在 <code>RecruimentListItemCell</code> 中添加标签“SampleLable”作为 subview ,但在 <code>-( void)prepareForReuse</code> 然后每次重用单元格时,“SampleLable”都会一次又一次地添加到其中,最终你会注意到事情看起来不像他们应该的那样,就像你的“重复创建标签”一样</p>

<p>这就是 <code>prepareForReuse</code> 在我的一个应用中的样子:</p>

<pre><code>-(void)prepareForReuse {

;

;
;

_title.text = nil;
_infoText.text = nil;
_createdTime.text = nil;
_cellType = CustomCellTypeNone;

;
}
</code></pre>

<p>在这里你可以看到我刚刚设置为 nil 的一些项目(并不总是最好的方法),如果需要,这些项目只是重新放入。你可以看到我隐藏了activityIcon 1和2。
当下一个单元格出现时,如果它需要图标,它会简单地取消隐藏它们,如果它需要标签,那么它会添加它们。</p>

<p>因此,如果我不将所有标签都归零,那么它们会留在 View 中,并且下一个单元格可能会添加自己的标签,这将导致您遇到的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - TableView滚动时如何避免UITableViewCell重复添加自定义标签?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34781239/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34781239/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - TableView滚动时如何避免UITableViewCell重复添加自定义标签?