まず、このような質問をして申し訳ありません。
テーブルビューセルを作成し、中央に揃えようとしましたが、これは何もしていません。左に揃えるだけです。
これは私が使用したコードです。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
if(indexPath.section == 0){
SDSCaseListCustomCell *customCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// if (customCell == nil)
{
NSArray *cells =[[NSBundle mainBundle] loadNibNamed:@"SDSCaseListCustomCell" owner:nil options:nil];
for (UIView *view in cells)
{
if([view isKindOfClass:[UITableViewCell class]])
{
customCell = (SDSCaseListCustomCell*)view;
}
}
}
SDSCase *cases = [caseList objectAtIndex:indexPath.row];
customCell.doctor.text = cases.referredDoctor;
customCell.hospital.text = cases.hospital;
//customCell.time.text = cases.referredDoctor;
customCell.caseId.text =cases.caseId;
return customCell;
}
else
{
UITableViewCell *loadMore = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (loadMore == nil)
{
loadMore = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
loadMore.textLabel.text = @"loadMore";
loadMore.textLabel.textAlignment = UITextAlignmentCenter;
return loadMore;
}
}
誰でも私が間違っているところを助けてくれませんか。
よろしくお願いします。