菜鸟教程小白 发表于 2022-12-13 04:01:08

ios - UITableViewCell 中的 UIImage 在行选择和从推送 View 返回时调整大小


                                            <p><p>我是 <code>iOS</code> 的新手,希望有人能给我一些指导。我有一个自定义的 tableviewcell,里面有一个 UIImage。当 <code>UITableView</code> 加载并创建单元格时,加载的图像仍保留在 UIImageView 控件的框架内。当进行行选择时,图像会调整大小以填充单元格允许的高度。此时只有选定的行受到影响。从 subview (由于按下单元格上的按钮而加载)返回时会出现类似的问题。 </p>

<p>我尝试对 UIImageView 的高度和宽度(以及 superView 中的 x、y 位置)设置约束,并尝试在 cellForRowAtIndexPath 事件中设置 UIImageView 的边界和框架。这些似乎都没有效果。 </p>

<p>删除我修复此问题的所有尝试并返回最简单的代码...</p>

<p></p><div class="snippet"data-lang="js"data-hide="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   
    NSString *documentDirectory = ;
    NSString *favoriteImageFileName = [ initWithFormat:@&#34;%@/Folder-Favorite_24px.png&#34;, documentDirectory];
    NSString *videoPlayImageFileName = [ initWithFormat:@&#34;%@/Video-4_24px.png&#34;, documentDirectory];
    NSString *imageInQuestion = [ initWithFormat:@&#34;%@/T-BoneDish128.png&#34;, documentDirectory];
   
    SearchResultsTableViewCell *cell = ;
   
    UIImage * favoriteIcon = [ initWithData:[ initWithContentsOfFile:favoriteImageFileName]];
    UIImage * videoPlay = [ initWithData:[ initWithContentsOfFile:videoPlayImageFileName]];
    UIImage * image = [ initWithData:[ initWithContentsOfFile:imageInQuestion]];
   
    ;
    ;
    ;
   
    return cell;


}</code></pre>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>UITableCell 被子类化以提供对自定义属性(图像、标签和按钮)的访问。新类的属性名称与标准模板(即图像)的名称相匹配。 </p>

<p>但是,当在代码中填充这些属性时,只有那些在 super 中被更新的属性。子类属性实际上链接到标签的导出,自定义单元格上的图像仍然为零。 </p>

<p>因此,当显示图像时,它访问的是父类(super class)中的图像,而不是那些子类,并且似乎没有应用任何约束,因为应用了约束的图像是 nil 并且没有显示。将来要记住的重要一点是,无论何时创建自定义 UITableCell 都不要使用 super 属性的任何名称。 </p>

<p>一旦子类中的属性与父类(super class)中的属性不同,这些属性就会正确更新,链接到子类的图像导出就会显示一个图像,并且按预期应用约束。 </p>

<p>当您“覆盖” super 的属性时,您不会收到编译器错误或警告,这可能会在这种情况下无意中完成。希望这对其他 IOS/Objective C 新手有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITableViewCell 中的 UIImage 在行选择和从推送 View 返回时调整大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27518825/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27518825/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITableViewCell 中的 UIImage 在行选择和从推送 View 返回时调整大小