我在Interface Buildinger做了我的习惯工作,并为之设立了可调用的电文组,但在装满时,没有对其作任何改动。 在习俗类别中,我有这一法典:
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self)
{
// Initialization code
//Get the wedding date and display it
myLabel.text = @"Hello";
}
return self;
}
我的劳工被宣布为头盔,拥有财产,并在Interface建筑商中建立联系,但当我管理时,我看一看我的桌子,我拿不到我的Hello文本。 任何想法?
感谢。
EDIT:
我没有使用刀子,我在我的故事板上有一个可贵的书记簿。 此外,这里是下文的“ForRowAtIndexPath”代码,我仅拥有一个填满所需细胞识别标志的阵列,然后制造这些阵列:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier;
for (int cell = 0; cell <= [tableCellsArray count]; cell++)
{
if ([indexPath row] == cell)
{
CellIdentifier = [tableCellsArray objectAtIndex:cell];
}
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
return cell;
}