我添加了一个 tableView 并将一个表格视图单元格拖到其中。在实用程序面板中,我将样式更改为字幕。我也尝试在代码中更改它:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.textAlignment = UITextAlignmentCenter;
cell.detailTextLabel.textAlignment = UITextAlignmentCenter;
cell.textLabel.text = [myArray objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [myArray2 objectAtIndex:indexPath.row];
return cell;
中心对齐不起作用!
我已经尝试将标签对象添加到单元格中以获得解决方法。但我不知道如何访问它。即使我为它分配了一个插座,这也行不通:
cell.labelForCell....
我该怎么办?关于如何使其以通常的方式工作的任何建议,而无需在单元格中添加标签或其他内容?