首先我很抱歉提出这个疑问。
我创建了一个表格视图单元格并尝试将其对齐到中心。但这无济于事。只是在左侧对齐。
这是我使用的代码。
- (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;
}
}
任何人都可以帮我解决我哪里出错了。
预先感谢。