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

iphone - UITableView 单元格返回 nil 属性值


                                            <p><p>我有以下几点:</p>

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

    if(indexPath.row==0)
    {
      static NSString *CellID = @&#34;FlourishCustomCell&#34;;
      FlourishCustomCell *cell = (FlourishCustomCell *) ;
      if (cell == nil) {
            cell = [[ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellID] autorelease];
            cell.frame = CGRectMake(0, 0.0, 292.0, 30);
      }

      id &lt;NSFetchedResultsSectionInfo&gt; sectionInfo =
      [ objectAtIndex:indexPath.section];
      NSLog(@&#34;DATE:%@&#34;, ); //Output: March 25

      cell.dateLabel.text=;
      NSLog(@&#34;header cell:%@&#34;, cell.dateLabel.text); //Output:header cell:(null)

      return cell;
    }
    else {
      static NSString *CellIdentifier = @&#34;IdeaCustomCell&#34;;
      IdeaCustomCell *cell = (IdeaCustomCell *) ;
      if (cell == nil) {
            cell = [[ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
            cell.frame = CGRectMake(0, 0.0, 292.0, 70);
      }

      ];
      return cell;
    }
}
</code></pre>

<p><code>else</code> 部分(<code>IdeaCustomCell</code>)的单元格显示和工作正常,但是由于某些非常令人沮丧的原因,当我设置 <code>dateLabel</code> <code>FlourishCell</code>,然后立即尝试访问该值,我得到一个 <code>null</code> 值,即使我只是设置它!并且单元格不显示在屏幕上。 </p>

<p>我尝试在 <code>FlourishCustomCell</code> 类中覆盖 dateLabel 的 setter 方法,并在其中放置了一个 NSLog 语句,但由于某种原因它从未被调用。</p>

<p>我完全不知道是什么原因造成的。我的意思是我当时就在那里分配,但它仍然给我null。有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你需要初始化标签</p>

<p>解决方案 1:在代码中初始化单元格</p>

<pre><code>@interface FlourishCustomCell : UITableViewCell

@property (nonatomic, retain) UILable * dateLabel;

@end

@implementation FlourishCustomCell
@synthesize dateLabel = _dateLabel;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
   if (self = )
   {
      _dateLabel = [ initWithFrame:CGRectMake(0,0,300,50)];
      
   }

   return self;
}

@end
</code></pre>

<p>解决方案 2:从 nib 初始化单元格</p>

<pre><code>@interface FlourishCustomCell : UITableViewCell

@property (nonatomic, retain) UILable * dateLabel;

@end

@implementation FlourishCustomCell
@synthesize dateLabel = _dateLabel;

- (id)init
{
self = [[[ loadNibNamed:@&#34;YOUR_NIB_NAME&#34; owner:nil options:nil]
         lastObject]
      retain];

   return self;
}

@end
</code></pre>

<p><strong>编辑</strong>:糟糕,忘记在 init 方法中返回 self,更新了答案</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - UITableView 单元格返回 nil 属性值,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9865609/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9865609/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - UITableView 单元格返回 nil 属性值