快速解决我的问题。
我有一个tableView,它从包中加载一个自定义的UITableViewCell并显示它。这一切都很完美,给了我想要的效果。
在加载" Custom Cell"我尝试对自定义单元格中的元素执行某些更改,特别是UILabel。以下是我的CustomCell.m
中的代码// ListCustomCell.m
// Recycling Lives SOS
//
// Created by Scott Evans on 08/04/2014.
// Copyright (c) 2014 Recycling-Lives. All rights reserved.
//
#import "ListCustomCell.h"
@implementation ListCustomCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
}
return self;
}
-(id)initWithCoder:(NSCoder *)aDecoder {
if ( !(self = [super initWithCoder:aDecoder]) ) return nil;
NSLog(@"Debug Tracking. This outputs into the debug, so is definately being called");
self.material.text = @"TEST";
return self;
}
- (void)awakeFromNib
{
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
我正在尝试编辑的标签。根本没有被编辑。香港专业教育学院尝试使用许多不同的元素,如UIButtons,看看他们是否有同样的问题,不幸的是他们这样做。
非常感谢任何帮助!
由于