我有以下几点:
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
if(indexPath.row==0)
{
static NSString *CellID = @"FlourishCustomCell";
FlourishCustomCell *cell = (FlourishCustomCell *) [tableView dequeueReusableCellWithIdentifier:CellID];
if (cell == nil) {
cell = [[[FlourishCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellID] autorelease];
cell.frame = CGRectMake(0, 0.0, 292.0, 30);
}
id <NSFetchedResultsSectionInfo> sectionInfo =
[[appDelegate.fetchedResultsController sections] objectAtIndex:indexPath.section];
NSLog(@"DATE:%@", [sectionInfo name]); //Output: March 25
cell.dateLabel.text=[sectionInfo name];
NSLog(@"header cell:%@", cell.dateLabel.text); //Output:header cellnull)
return cell;
}
else {
static NSString *CellIdentifier = @"IdeaCustomCell";
IdeaCustomCell *cell = (IdeaCustomCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[IdeaCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.frame = CGRectMake(0, 0.0, 292.0, 70);
}
[self configureCell:cell atIndexPath:[self newIndexPathForIndexPath:indexPath]];
return cell;
}
}
else
部分(IdeaCustomCell
)的单元格显示和工作正常,但是由于某些非常令人沮丧的原因,当我设置 dateLabel
FlourishCell
,然后立即尝试访问该值,我得到一个 null
值,即使我只是设置它!并且单元格不显示在屏幕上。
我尝试在 FlourishCustomCell
类中覆盖 dateLabel 的 setter 方法,并在其中放置了一个 NSLog 语句,但由于某种原因它从未被调用。
我完全不知道是什么原因造成的。我的意思是我当时就在那里分配,但它仍然给我null。有什么想法吗?
你需要初始化标签
解决方案 1:在代码中初始化单元格
@interface FlourishCustomCell : UITableViewCell
@property (nonatomic, retain) UILable * dateLabel;
@end
@implementation FlourishCustomCell
@synthesize dateLabel = _dateLabel;
- (id)initWithStyleUITableViewCellStyle)style reuseIdentifierNSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])
{
_dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(0,0,300,50)];
[self.contentView addSubview:_dateLabel]
}
return self;
}
@end
解决方案 2:从 nib 初始化单元格
@interface FlourishCustomCell : UITableViewCell
@property (nonatomic, retain) UILable * dateLabel;
@end
@implementation FlourishCustomCell
@synthesize dateLabel = _dateLabel;
- (id)init
{
self = [[[[NSBundle mainBundle] loadNibNamed"YOUR_NIB_NAME" owner:nil options:nil]
lastObject]
retain];
return self;
}
@end
编辑:糟糕,忘记在 init 方法中返回 self,更新了答案
关于iphone - UITableView 单元格返回 nil 属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9865609/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |