菜鸟教程小白 发表于 2022-12-12 10:01:06

ios - 将图像分配给表格单元格中的 uiimageview


                                            <p><p>我在自定义表格单元格中有一个 ImageView ,我需要从表格 View 委托(delegate)中为其分配一张图片</p>

<pre><code>cell.imageViewLeft = [ initWithImage:];
    NSLog(@&#34;%@, %@&#34;, ,cell.imageViewLeft.image);
</code></pre>

<p>日志给了我:</p>

<p><code><UIImage: 0xb485310>, (null)</code></p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>确保您的 <code>IBOutlets</code> 连接正确。</p>

<p>另外,确保你@<code>synthesize</code> 你的<code>imageViewLeft</code>!</p>

<pre><code>cell.imageViewLeft.image = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将图像分配给表格单元格中的 uiimageview,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15752346/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15752346/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将图像分配给表格单元格中的 uiimageview