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

objective-c - UITableView 中单元格的右 CellIdentifier


                                            <p><p>谁能解释一下两者的区别</p>

<pre><code>static NSString* CellIdentifier = @&#34;Cell&#34;;
</code></pre>

<p>和</p>

<pre><code>NSString *CellIdentifier = ;
</code></pre>

<p>我应该什么时候使用第一个,第二个在哪里?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>static NSString* CellIdentifier = @&#34;Cell&#34;;
</code></pre>

<p>此标识符(假设没有其他标识符)将标识一个单元格池,当需要新单元格时,所有行都会从中提取。</p>

<pre><code>NSString *CellIdentifier = ;
</code></pre>

<p>此标识符将为每一行创建一个单元格池,即它将为每一行创建一个大小为 1 的池,并且一个单元格将始终仅用于该行。</p>

<p>通常您会希望始终使用第一个示例。第二个示例的变体如下:</p>

<pre><code>NSString *CellIdentifier = ;
</code></pre>

<p>如果您希望每隔一行都具有某种背景颜色或类似的东西,这将很有用。</p>

<p>如何从 <a href="http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7-SW1" rel="noreferrer noopener nofollow">here</a> 正确设置单元创建的示例:</p>

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

    if (cell == nil) {
      cell = [[ initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@&#34;MyIdentifier&#34;] autorelease];
      cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }

    NSDictionary *item = (NSDictionary *);
    cell.textLabel.text = ;
    cell.detailTextLabel.text = ;
    NSString *path = [ pathForResource: ofType:@&#34;png&#34;];
    UIImage *theImage = ;
    cell.imageView.image = theImage;

    return cell;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - UITableView 中单元格的右 CellIdentifier,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10016035/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10016035/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - UITableView 中单元格的右 CellIdentifier